texinfo-commits
[Top][All Lists]
Advanced

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

[7110] Reduce references to Texinfo::Parser module


From: Gavin D. Smith
Subject: [7110] Reduce references to Texinfo::Parser module
Date: Sat, 09 Apr 2016 13:30:57 +0000

Revision: 7110
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7110
Author:   gavin
Date:     2016-04-09 13:30:57 +0000 (Sat, 09 Apr 2016)
Log Message:
-----------
Reduce references to Texinfo::Parser module

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/Converter.pm
    trunk/tp/Texinfo/Convert/DocBook.pm
    trunk/tp/Texinfo/Convert/TexinfoXML.pm

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2016-04-09 13:20:19 UTC (rev 7109)
+++ trunk/ChangeLog     2016-04-09 13:30:57 UTC (rev 7110)
@@ -3,14 +3,21 @@
        Reduce references to Texinfo::Parser module.
 
        * tp/Texinfo/Parser.pm (_parse_def): Remove commented-out code.
-       * tp/Texinfo/HTML.pm: Refer to Texinfo::Common::_print_current 
-       instead of Texinfo::Parser::_print_current.
+       * tp/Texinfo/Convert/HTML.pm: Refer to 
+       Texinfo::Common::_print_current instead of 
+       Texinfo::Parser::_print_current.
        (command_filename, _convert_key_command) 
        (_convert_indicateurl_command, _convert_ctrl_command)
        (_convert_titlefont_command, _convert_style_command)
        (_convert_float_command): Remove commented-out code.
        * tp/Texinfo/Parser.pm (_parse_node_manual): Add a comment.
 
+       * tp/Texinfo/Convert/Converter.pm (_bug_message),
+       * tp/Texinfo/Convert/DocBook.pm (_convert),
+       * tp/Texinfo/Convert/TexinfoXML.pm (_convert):
+       Refer to Texinfo::Common::_print_current instead of 
+       Texinfo::Parser::_print_current.
+
 2016-04-09  Gavin Smith  <address@hidden>
 
        * tp/Texinfo/Common.pm (%index_names): Don't set a 'prefix' 

Modified: trunk/tp/Texinfo/Convert/Converter.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Converter.pm       2016-04-09 13:20:19 UTC (rev 
7109)
+++ trunk/tp/Texinfo/Convert/Converter.pm       2016-04-09 13:30:57 UTC (rev 
7110)
@@ -929,7 +929,7 @@
     }
     if ($current) {
       $current_element_message = "current: ". 
-        Texinfo::Parser::_print_current($current);
+        Texinfo::Common::_print_current($current);
     }
   }
   my $additional_information = '';

Modified: trunk/tp/Texinfo/Convert/DocBook.pm
===================================================================
--- trunk/tp/Texinfo/Convert/DocBook.pm 2016-04-09 13:20:19 UTC (rev 7109)
+++ trunk/tp/Texinfo/Convert/DocBook.pm 2016-04-09 13:30:57 UTC (rev 7110)
@@ -587,7 +587,7 @@
                     and $root->{'parent'}->{'type'}
                     and $root->{'parent'}->{'type'} eq 'row') {
           warn "BUG: multitable cell command not in a row "
-            .Texinfo::Parser::_print_current($root);
+            .Texinfo::Common::_print_current($root);
         }
         
         $result .= "<entry>";

Modified: trunk/tp/Texinfo/Convert/TexinfoXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoXML.pm      2016-04-09 13:20:19 UTC (rev 
7109)
+++ trunk/tp/Texinfo/Convert/TexinfoXML.pm      2016-04-09 13:30:57 UTC (rev 
7110)
@@ -860,7 +860,7 @@
                     and $root->{'parent'}->{'type'}
                     and $root->{'parent'}->{'type'} eq 'row') {
           print STDERR "BUG: multitable cell command not in a row "
-            .Texinfo::Parser::_print_current($root);
+            .Texinfo::Common::_print_current($root);
         }
         
         $result .= $self->open_element('entry', ['command', 




reply via email to

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