texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm (_


From: Patrice Dumas
Subject: branch master updated: * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm (_texinfo_handle_element_start, _texinfo_handle_element_end): use Texinfo::Commands::brace_code_commands.
Date: Mon, 14 Nov 2022 08:13:47 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new b8ae039983 * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm 
(_texinfo_handle_element_start, _texinfo_handle_element_end): use 
Texinfo::Commands::brace_code_commands.
b8ae039983 is described below

commit b8ae0399834e5e18db3fee4b5ed717e5cceef426
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon Nov 14 14:13:35 2022 +0100

    * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
    (_texinfo_handle_element_start, _texinfo_handle_element_end): use
    Texinfo::Commands::brace_code_commands.
---
 ChangeLog                                    | 6 ++++++
 Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7ce6d37329..8841076540 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-11-14  Patrice Dumas  <pertusus@free.fr>
+
+       * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
+       (_texinfo_handle_element_start, _texinfo_handle_element_end): use
+       Texinfo::Commands::brace_code_commands.
+
 2022-11-14  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/ParserNonXS.pm: do not reset simple_text_commands and
diff --git a/Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm 
b/Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
index e355350957..3130357c06 100644
--- a/Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
+++ b/Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
@@ -747,7 +747,7 @@ sub _texinfo_handle_element_start($$$)
     _begin_context($self->{'texinfo_accumulated'}, $tagname);
   } elsif ($tag_commands{$tagname}) {
     _output($fh, $self->{'texinfo_accumulated'}, 
"\@$tag_commands{$tagname}\{");
-    if ($Texinfo::Common::brace_code_commands{$tag_commands{$tagname}}) {
+    if ($Texinfo::Commands::brace_code_commands{$tag_commands{$tagname}}) {
       if (@{$self->{'texinfo_stack'}} and ref($self->{'texinfo_stack'}->[-1]) 
eq ''
           and 
defined($self->{'texinfo_raw_format_commands'}->{$self->{'texinfo_stack'}->[-1]}))
 {
         cluck "in $self->{'texinfo_stack'}->[-1]: $tagname 
$tag_commands{$tagname}";
@@ -932,7 +932,7 @@ sub _texinfo_handle_element_end($$$)
     }
   } elsif ($tag_commands{$tagname}) {
     _output($fh, $self->{'texinfo_accumulated'}, "}");
-    if ($Texinfo::Common::brace_code_commands{$tag_commands{$tagname}}) {
+    if ($Texinfo::Commands::brace_code_commands{$tag_commands{$tagname}}) {
       pop @{$self->{'texinfo_stack'}};
     }
   } elsif ($environment_commands{$tagname}) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]