texinfo-commits
[Top][All Lists]
Advanced

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

[5250] * tp/Texinfo/Convert/Plaintext.pm: do not consider an emp


From: Patrice Dumas
Subject: [5250] * tp/Texinfo/Convert/Plaintext.pm: do not consider an empty line
Date: Sun, 07 Apr 2013 14:01:26 +0000

Revision: 5250
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5250
Author:   pertusus
Date:     2013-04-07 14:01:17 +0000 (Sun, 07 Apr 2013)
Log Message:
-----------
        * tp/Texinfo/Convert/Plaintext.pm: do not consider an empty line
        at the end of a preformatted format as counting as an empty line
        in order to output an empty line following the preformatted format 
        too.  Karl report.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/Plaintext.pm
    trunk/tp/t/results/coverage/flushright_example_nested.pl
    trunk/tp/t/results/plaintext_tests/empty_line_in_example_end.pl
    trunk/tp/t/results/plaintext_tests/line_passed_and_formats.pl
    trunk/tp/t/results/preformatted/nested_formats.pl
    trunk/tp/t/results/preformatted/text_on_command_line.pl
    trunk/tp/t/results/raw/braces_in_tex.pl
    trunk/tp/t/results/raw/raw_in_example.pl
    trunk/tp/t/results/raw/verbatim_and_verbatiminclude.pl
    trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info
    trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info
    
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
    trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.1
    
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
    
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/ChangeLog     2013-04-07 14:01:17 UTC (rev 5250)
@@ -1,6 +1,10 @@
 2013-04-07  Patrice Dumas  <address@hidden>
 
        * configure.ac: set DIFF_A_OPTION to -a, and not DIFF_U_OPTION.
+       * tp/Texinfo/Convert/Plaintext.pm: do not consider an empty line
+       at the end of a preformatted format as counting as an empty line
+       in order to output an empty line following the preformatted format 
+       too.  Karl report.
 
 2013-03-31  Sergey Poznyakoff  <address@hidden>
 

Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm       2013-04-07 13:05:12 UTC (rev 
5249)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm       2013-04-07 14:01:17 UTC (rev 
5250)
@@ -3021,6 +3021,9 @@
       die "Not a preformatted context: $old_context"
         if (!$self->{'preformatted_context_commands'}->{$old_context}
             and $old_context ne 'float');
+      if ($old_context ne 'float' and !$menu_commands{$old_context}) {
+        $self->{'empty_lines_count'} = 0;
+      }
       delete ($self->{'preformatted_context_commands'}->{$root->{'cmdname'}})
        unless ($default_preformatted_context_commands{$root->{'cmdname'}});
     } elsif ($flush_commands{$root->{'cmdname'}}) {

Modified: trunk/tp/t/results/coverage/flushright_example_nested.pl
===================================================================
--- trunk/tp/t/results/coverage/flushright_example_nested.pl    2013-04-07 
13:05:12 UTC (rev 5249)
+++ trunk/tp/t/results/coverage/flushright_example_nested.pl    2013-04-07 
14:01:17 UTC (rev 5250)
@@ -407,6 +407,7 @@
 
 $result_converted{'plaintext'}->{'flushright_example_nested'} = '              
                                      in   --- flushright
 
+
      in   --- example
 
      flush then example

Modified: trunk/tp/t/results/plaintext_tests/empty_line_in_example_end.pl
===================================================================
--- trunk/tp/t/results/plaintext_tests/empty_line_in_example_end.pl     
2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/tp/t/results/plaintext_tests/empty_line_in_example_end.pl     
2013-04-07 14:01:17 UTC (rev 5250)
@@ -150,6 +150,7 @@
 
 $result_converted{'plaintext'}->{'empty_line_in_example_end'} = '     in 
example
 
+
    After line
 ';
 

Modified: trunk/tp/t/results/plaintext_tests/line_passed_and_formats.pl
===================================================================
--- trunk/tp/t/results/plaintext_tests/line_passed_and_formats.pl       
2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/tp/t/results/plaintext_tests/line_passed_and_formats.pl       
2013-04-07 14:01:17 UTC (rev 5250)
@@ -3614,10 +3614,12 @@
           In nested
 
 
+
    Example empty out, no spaces inside
 
           In nested
 
+
    menu
    end menu
 ';

Modified: trunk/tp/t/results/preformatted/nested_formats.pl
===================================================================
--- trunk/tp/t/results/preformatted/nested_formats.pl   2013-04-07 13:05:12 UTC 
(rev 5249)
+++ trunk/tp/t/results/preformatted/nested_formats.pl   2013-04-07 14:01:17 UTC 
(rev 5250)
@@ -419,6 +419,7 @@
      in -- format/example
 
 
+
      in -- example/format
 
 ';

Modified: trunk/tp/t/results/preformatted/text_on_command_line.pl
===================================================================
--- trunk/tp/t/results/preformatted/text_on_command_line.pl     2013-04-07 
13:05:12 UTC (rev 5249)
+++ trunk/tp/t/results/preformatted/text_on_command_line.pl     2013-04-07 
14:01:17 UTC (rev 5250)
@@ -548,7 +548,8 @@
 
 
 
-$result_converted{'plaintext'}->{'text_on_command_line'} = '     normal text
+$result_converted{'plaintext'}->{'text_on_command_line'} = '
+     normal text
 
      in example
 

Modified: trunk/tp/t/results/raw/braces_in_tex.pl
===================================================================
--- trunk/tp/t/results/raw/braces_in_tex.pl     2013-04-07 13:05:12 UTC (rev 
5249)
+++ trunk/tp/t/results/raw/braces_in_tex.pl     2013-04-07 14:01:17 UTC (rev 
5250)
@@ -399,6 +399,7 @@
 
 
 
-$result_converted{'plaintext'}->{'braces_in_tex'} = '';
+$result_converted{'plaintext'}->{'braces_in_tex'} = '
+';
 
 1;

Modified: trunk/tp/t/results/raw/raw_in_example.pl
===================================================================
--- trunk/tp/t/results/raw/raw_in_example.pl    2013-04-07 13:05:12 UTC (rev 
5249)
+++ trunk/tp/t/results/raw/raw_in_example.pl    2013-04-07 14:01:17 UTC (rev 
5250)
@@ -590,6 +590,8 @@
 $result_converted{'plaintext'}->{'raw_in_example'} = '
 
 
+
+
 ';
 
 

Modified: trunk/tp/t/results/raw/verbatim_and_verbatiminclude.pl
===================================================================
--- trunk/tp/t/results/raw/verbatim_and_verbatiminclude.pl      2013-04-07 
13:05:12 UTC (rev 5249)
+++ trunk/tp/t/results/raw/verbatim_and_verbatiminclude.pl      2013-04-07 
14:01:17 UTC (rev 5250)
@@ -1268,6 +1268,7 @@
      In verbatim in example
      In verbatim                @@                        
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa       bbbbbbbbbbbbbb
 
+
      In quotation with spaces
 
      In verbatim in quotation with spaces

Modified: trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info  
2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/tp/tests/coverage/res_parser_info/formatting/formatting.info  
2013-04-07 14:01:17 UTC (rev 5250)
@@ -1530,6 +1530,7 @@
 
 
 
+
    cp
 
 [index]
@@ -1541,9 +1542,9 @@
 * -option:                               Top.                (line   27)
 * -option <1>:                           Top.                (line  366)
 * -option <2>:                           Top.                (line  716)
-* .:                                     Top.                (line 1184)
-* ?:                                     Top.                (line 1184)
-* a:                                     Top.                (line 1184)
+* .:                                     Top.                (line 1185)
+* ?:                                     Top.                (line 1185)
+* a:                                     Top.                (line 1185)
 * index entry between item and itemx:    Top.                (line  314)
 * index entry between item and itemx <1>: Top.               (line  653)
 * index entry between item and itemx <2>: Top.               (line 1132)
@@ -1556,8 +1557,8 @@
 * index entry within multitable:         Top.                (line  130)
 * index entry within multitable <1>:     Top.                (line  469)
 * index entry within multitable <2>:     Top.                (line  949)
-* t-ruc:                                 Top.                (line 1184)
-* T-ruc:                                 Top.                (line 1184)
+* t-ruc:                                 Top.                (line 1185)
+* T-ruc:                                 Top.                (line 1185)
 
    fn
 
@@ -1567,8 +1568,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  366)
 * --foption <2>:                         Top.                (line  716)
-* .:                                     Top.                (line 1184)
-* ?:                                     Top.                (line 1184)
+* .:                                     Top.                (line 1185)
+* ?:                                     Top.                (line 1185)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  366)
 * `` <2>:                                Top.                (line  716)
@@ -1578,7 +1579,7 @@
 * a <3>:                                 Top.                (line  652)
 * a <4>:                                 Top.                (line  995)
 * a <5>:                                 Top.                (line 1131)
-* a <6>:                                 Top.                (line 1184)
+* a <6>:                                 Top.                (line 1185)
 * b:                                     Top.                (line  314)
 * b <1>:                                 Top.                (line  653)
 * b <2>:                                 Top.                (line 1132)
@@ -1660,8 +1661,8 @@
 * machin <3>:                            Top.                (line  511)
 * machin <4>:                            Top.                (line  988)
 * machin <5>:                            Top.                (line  990)
-* t--ruc:                                Top.                (line 1184)
-* T--ruc:                                Top.                (line 1184)
+* t--ruc:                                Top.                (line 1185)
+* T--ruc:                                Top.                (line 1185)
 * truc:                                  Top.                (line  160)
 * truc <1>:                              Top.                (line  186)
 * truc <2>:                              Top.                (line  499)
@@ -1806,9 +1807,9 @@
 * -option:                               Top.                (line   27)
 * -option <1>:                           Top.                (line  366)
 * -option <2>:                           Top.                (line  716)
-* .:                                     Top.                (line 1184)
-* ?:                                     Top.                (line 1184)
-* a:                                     Top.                (line 1184)
+* .:                                     Top.                (line 1185)
+* ?:                                     Top.                (line 1185)
+* a:                                     Top.                (line 1185)
 * index entry between item and itemx:    Top.                (line  314)
 * index entry between item and itemx <1>: Top.               (line  653)
 * index entry between item and itemx <2>: Top.               (line 1132)
@@ -1821,8 +1822,8 @@
 * index entry within multitable:         Top.                (line  130)
 * index entry within multitable <1>:     Top.                (line  469)
 * index entry within multitable <2>:     Top.                (line  949)
-* t-ruc:                                 Top.                (line 1184)
-* T-ruc:                                 Top.                (line 1184)
+* t-ruc:                                 Top.                (line 1185)
+* T-ruc:                                 Top.                (line 1185)
 
 [index]
 * Menu:
@@ -1830,8 +1831,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  366)
 * --foption <2>:                         Top.                (line  716)
-* .:                                     Top.                (line 1184)
-* ?:                                     Top.                (line 1184)
+* .:                                     Top.                (line 1185)
+* ?:                                     Top.                (line 1185)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  366)
 * `` <2>:                                Top.                (line  716)
@@ -1841,7 +1842,7 @@
 * a <3>:                                 Top.                (line  652)
 * a <4>:                                 Top.                (line  995)
 * a <5>:                                 Top.                (line 1131)
-* a <6>:                                 Top.                (line 1184)
+* a <6>:                                 Top.                (line 1185)
 * b:                                     Top.                (line  314)
 * b <1>:                                 Top.                (line  653)
 * b <2>:                                 Top.                (line 1132)
@@ -1923,8 +1924,8 @@
 * machin <3>:                            Top.                (line  511)
 * machin <4>:                            Top.                (line  988)
 * machin <5>:                            Top.                (line  990)
-* t--ruc:                                Top.                (line 1184)
-* T--ruc:                                Top.                (line 1184)
+* t--ruc:                                Top.                (line 1185)
+* T--ruc:                                Top.                (line 1185)
 * truc:                                  Top.                (line  160)
 * truc <1>:                              Top.                (line  186)
 * truc <2>:                              Top.                (line  499)
@@ -1936,19 +1937,19 @@
 
 Tag Table:
 Node: Top10277
-Ref: Top-Footnote-154299
-Ref: Top-Footnote-254319
-Ref: Top-Footnote-354340
-Ref: Top-Footnote-454360
-Ref: Top-Footnote-554381
-Ref: Top-Footnote-654401
-Node: chapter54422
-Ref: chapter-Footnote-154646
-Node: s--ect,ion54666
-Node: subsection54868
-Ref: anchor55047
-Node: subsubsection ``simple-double--55047
-Node: subsubsection three---four----''55247
-Node: chapter255419
+Ref: Top-Footnote-154300
+Ref: Top-Footnote-254320
+Ref: Top-Footnote-354341
+Ref: Top-Footnote-454361
+Ref: Top-Footnote-554382
+Ref: Top-Footnote-654402
+Node: chapter54423
+Ref: chapter-Footnote-154647
+Node: s--ect,ion54667
+Node: subsection54869
+Ref: anchor55048
+Node: subsubsection ``simple-double--55048
+Node: subsubsection three---four----''55248
+Node: chapter255420
 
 End Tag Table

Modified: trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info       
2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.info       
2013-04-07 14:01:17 UTC (rev 5250)
@@ -1531,6 +1531,7 @@
 
 
 
+
    cp
 
 [index]
@@ -1542,9 +1543,9 @@
 * -option:                               Top.                (line   27)
 * -option <1>:                           Top.                (line  366)
 * -option <2>:                           Top.                (line  716)
-* .:                                     Top.                (line 1185)
-* ?:                                     Top.                (line 1185)
-* a:                                     Top.                (line 1185)
+* .:                                     Top.                (line 1186)
+* ?:                                     Top.                (line 1186)
+* a:                                     Top.                (line 1186)
 * index entry between item and itemx:    Top.                (line  314)
 * index entry between item and itemx <1>: Top.               (line  653)
 * index entry between item and itemx <2>: Top.               (line 1133)
@@ -1557,8 +1558,8 @@
 * index entry within multitable:         Top.                (line  130)
 * index entry within multitable <1>:     Top.                (line  469)
 * index entry within multitable <2>:     Top.                (line  949)
-* t-ruc:                                 Top.                (line 1185)
-* T-ruc:                                 Top.                (line 1185)
+* t-ruc:                                 Top.                (line 1186)
+* T-ruc:                                 Top.                (line 1186)
 
    fn
 
@@ -1568,8 +1569,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  366)
 * --foption <2>:                         Top.                (line  716)
-* .:                                     Top.                (line 1185)
-* ?:                                     Top.                (line 1185)
+* .:                                     Top.                (line 1186)
+* ?:                                     Top.                (line 1186)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  366)
 * `` <2>:                                Top.                (line  716)
@@ -1579,7 +1580,7 @@
 * a <3>:                                 Top.                (line  652)
 * a <4>:                                 Top.                (line  995)
 * a <5>:                                 Top.                (line 1132)
-* a <6>:                                 Top.                (line 1185)
+* a <6>:                                 Top.                (line 1186)
 * b:                                     Top.                (line  314)
 * b <1>:                                 Top.                (line  653)
 * b <2>:                                 Top.                (line 1133)
@@ -1661,8 +1662,8 @@
 * machin <3>:                            Top.                (line  511)
 * machin <4>:                            Top.                (line  988)
 * machin <5>:                            Top.                (line  990)
-* t--ruc:                                Top.                (line 1185)
-* T--ruc:                                Top.                (line 1185)
+* t--ruc:                                Top.                (line 1186)
+* T--ruc:                                Top.                (line 1186)
 * truc:                                  Top.                (line  160)
 * truc <1>:                              Top.                (line  186)
 * truc <2>:                              Top.                (line  499)
@@ -1807,9 +1808,9 @@
 * -option:                               Top.                (line   27)
 * -option <1>:                           Top.                (line  366)
 * -option <2>:                           Top.                (line  716)
-* .:                                     Top.                (line 1185)
-* ?:                                     Top.                (line 1185)
-* a:                                     Top.                (line 1185)
+* .:                                     Top.                (line 1186)
+* ?:                                     Top.                (line 1186)
+* a:                                     Top.                (line 1186)
 * index entry between item and itemx:    Top.                (line  314)
 * index entry between item and itemx <1>: Top.               (line  653)
 * index entry between item and itemx <2>: Top.               (line 1133)
@@ -1822,8 +1823,8 @@
 * index entry within multitable:         Top.                (line  130)
 * index entry within multitable <1>:     Top.                (line  469)
 * index entry within multitable <2>:     Top.                (line  949)
-* t-ruc:                                 Top.                (line 1185)
-* T-ruc:                                 Top.                (line 1185)
+* t-ruc:                                 Top.                (line 1186)
+* T-ruc:                                 Top.                (line 1186)
 
 [index]
 * Menu:
@@ -1831,8 +1832,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  366)
 * --foption <2>:                         Top.                (line  716)
-* .:                                     Top.                (line 1185)
-* ?:                                     Top.                (line 1185)
+* .:                                     Top.                (line 1186)
+* ?:                                     Top.                (line 1186)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  366)
 * `` <2>:                                Top.                (line  716)
@@ -1842,7 +1843,7 @@
 * a <3>:                                 Top.                (line  652)
 * a <4>:                                 Top.                (line  995)
 * a <5>:                                 Top.                (line 1132)
-* a <6>:                                 Top.                (line 1185)
+* a <6>:                                 Top.                (line 1186)
 * b:                                     Top.                (line  314)
 * b <1>:                                 Top.                (line  653)
 * b <2>:                                 Top.                (line 1133)
@@ -1924,8 +1925,8 @@
 * machin <3>:                            Top.                (line  511)
 * machin <4>:                            Top.                (line  988)
 * machin <5>:                            Top.                (line  990)
-* t--ruc:                                Top.                (line 1185)
-* T--ruc:                                Top.                (line 1185)
+* t--ruc:                                Top.                (line 1186)
+* T--ruc:                                Top.                (line 1186)
 * truc:                                  Top.                (line  160)
 * truc <1>:                              Top.                (line  186)
 * truc <2>:                              Top.                (line  499)
@@ -1937,19 +1938,19 @@
 
 Tag Table:
 Node: Top10359
-Ref: Top-Footnote-154642
-Ref: Top-Footnote-254662
-Ref: Top-Footnote-354683
-Ref: Top-Footnote-454703
-Ref: Top-Footnote-554724
-Ref: Top-Footnote-654744
-Node: chapter54765
-Ref: chapter-Footnote-154989
-Node: s--ect,ion55009
-Node: subsection55211
-Ref: anchor55390
-Node: subsubsection ``simple-double--55390
-Node: subsubsection three---four----''55590
-Node: chapter255762
+Ref: Top-Footnote-154643
+Ref: Top-Footnote-254663
+Ref: Top-Footnote-354684
+Ref: Top-Footnote-454704
+Ref: Top-Footnote-554725
+Ref: Top-Footnote-654745
+Node: chapter54766
+Ref: chapter-Footnote-154990
+Node: s--ect,ion55010
+Node: subsection55212
+Ref: anchor55391
+Node: subsubsection ``simple-double--55391
+Node: subsubsection three---four----''55591
+Node: chapter255763
 
 End Tag Table

Modified: 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
===================================================================
--- 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
        2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/coverage/res_parser_info/formatting_utf8_enable_encoding/formatting_utf8.info
        2013-04-07 14:01:17 UTC (rev 5250)
@@ -1527,6 +1527,7 @@
 
 
 
+
    cp
 
 [index]
@@ -1538,9 +1539,9 @@
 * –option:                               Top.                (line   27)
 * –option <1>:                           Top.                (line  365)
 * –option <2>:                           Top.                (line  714)
-* .:                                     Top.                (line 1182)
-* ?:                                     Top.                (line 1182)
-* a:                                     Top.                (line 1182)
+* .:                                     Top.                (line 1183)
+* ?:                                     Top.                (line 1183)
+* a:                                     Top.                (line 1183)
 * index entry between item and itemx:    Top.                (line  313)
 * index entry between item and itemx <1>: Top.               (line  651)
 * index entry between item and itemx <2>: Top.               (line 1130)
@@ -1553,8 +1554,8 @@
 * index entry within multitable:         Top.                (line  129)
 * index entry within multitable <1>:     Top.                (line  467)
 * index entry within multitable <2>:     Top.                (line  947)
-* t–ruc:                                 Top.                (line 1182)
-* T–ruc:                                 Top.                (line 1182)
+* t–ruc:                                 Top.                (line 1183)
+* T–ruc:                                 Top.                (line 1183)
 
    fn
 
@@ -1564,8 +1565,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  365)
 * --foption <2>:                         Top.                (line  714)
-* .:                                     Top.                (line 1182)
-* ?:                                     Top.                (line 1182)
+* .:                                     Top.                (line 1183)
+* ?:                                     Top.                (line 1183)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  365)
 * `` <2>:                                Top.                (line  714)
@@ -1575,7 +1576,7 @@
 * a <3>:                                 Top.                (line  650)
 * a <4>:                                 Top.                (line  993)
 * a <5>:                                 Top.                (line 1129)
-* a <6>:                                 Top.                (line 1182)
+* a <6>:                                 Top.                (line 1183)
 * b:                                     Top.                (line  313)
 * b <1>:                                 Top.                (line  651)
 * b <2>:                                 Top.                (line 1130)
@@ -1657,8 +1658,8 @@
 * machin <3>:                            Top.                (line  509)
 * machin <4>:                            Top.                (line  986)
 * machin <5>:                            Top.                (line  988)
-* t--ruc:                                Top.                (line 1182)
-* T--ruc:                                Top.                (line 1182)
+* t--ruc:                                Top.                (line 1183)
+* T--ruc:                                Top.                (line 1183)
 * truc:                                  Top.                (line  159)
 * truc <1>:                              Top.                (line  185)
 * truc <2>:                              Top.                (line  497)
@@ -1803,9 +1804,9 @@
 * –option:                               Top.                (line   27)
 * –option <1>:                           Top.                (line  365)
 * –option <2>:                           Top.                (line  714)
-* .:                                     Top.                (line 1182)
-* ?:                                     Top.                (line 1182)
-* a:                                     Top.                (line 1182)
+* .:                                     Top.                (line 1183)
+* ?:                                     Top.                (line 1183)
+* a:                                     Top.                (line 1183)
 * index entry between item and itemx:    Top.                (line  313)
 * index entry between item and itemx <1>: Top.               (line  651)
 * index entry between item and itemx <2>: Top.               (line 1130)
@@ -1818,8 +1819,8 @@
 * index entry within multitable:         Top.                (line  129)
 * index entry within multitable <1>:     Top.                (line  467)
 * index entry within multitable <2>:     Top.                (line  947)
-* t–ruc:                                 Top.                (line 1182)
-* T–ruc:                                 Top.                (line 1182)
+* t–ruc:                                 Top.                (line 1183)
+* T–ruc:                                 Top.                (line 1183)
 
 [index]
 * Menu:
@@ -1827,8 +1828,8 @@
 * --foption:                             Top.                (line   27)
 * --foption <1>:                         Top.                (line  365)
 * --foption <2>:                         Top.                (line  714)
-* .:                                     Top.                (line 1182)
-* ?:                                     Top.                (line 1182)
+* .:                                     Top.                (line 1183)
+* ?:                                     Top.                (line 1183)
 * ``:                                    Top.                (line   27)
 * `` <1>:                                Top.                (line  365)
 * `` <2>:                                Top.                (line  714)
@@ -1838,7 +1839,7 @@
 * a <3>:                                 Top.                (line  650)
 * a <4>:                                 Top.                (line  993)
 * a <5>:                                 Top.                (line 1129)
-* a <6>:                                 Top.                (line 1182)
+* a <6>:                                 Top.                (line 1183)
 * b:                                     Top.                (line  313)
 * b <1>:                                 Top.                (line  651)
 * b <2>:                                 Top.                (line 1130)
@@ -1920,8 +1921,8 @@
 * machin <3>:                            Top.                (line  509)
 * machin <4>:                            Top.                (line  986)
 * machin <5>:                            Top.                (line  988)
-* t--ruc:                                Top.                (line 1182)
-* T--ruc:                                Top.                (line 1182)
+* t--ruc:                                Top.                (line 1183)
+* T--ruc:                                Top.                (line 1183)
 * truc:                                  Top.                (line  159)
 * truc <1>:                              Top.                (line  185)
 * truc <2>:                              Top.                (line  497)
@@ -1933,20 +1934,20 @@
 
 Tag Table:
 Node: Top11126
-Ref: Top-Footnote-156948
-Ref: Top-Footnote-256968
-Ref: Top-Footnote-356989
-Ref: Top-Footnote-457009
-Ref: Top-Footnote-557030
-Ref: Top-Footnote-657050
-Node: chapter57071
-Ref: chapter-Footnote-157310
-Node: s--ect,ion57330
-Node: subsection57537
-Ref: anchor57721
-Node: subsubsection ``simple-double--57721
-Node: subsubsection three---four----''57930
-Node: chapter258109
+Ref: Top-Footnote-156949
+Ref: Top-Footnote-256969
+Ref: Top-Footnote-356990
+Ref: Top-Footnote-457010
+Ref: Top-Footnote-557031
+Ref: Top-Footnote-657051
+Node: chapter57072
+Ref: chapter-Footnote-157311
+Node: s--ect,ion57331
+Node: subsection57538
+Ref: anchor57722
+Node: subsubsection ``simple-double--57722
+Node: subsubsection three---four----''57931
+Node: chapter258110
 
 End Tag Table
 

Modified: trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.1
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.1  
2013-04-07 13:05:12 UTC (rev 5249)
+++ trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.1  
2013-04-07 14:01:17 UTC (rev 5250)
@@ -1194,6 +1194,7 @@
 
 
 
+
    cp
 
 * Menu:
@@ -1204,9 +1205,9 @@
 * -option:                               Top.                (line   16)
 * -option <1>:                           Top.                (line  363)
 * -option <2>:                           Top.                (line  721)
-* .:                                     Top.                (line 1196)
-* ?:                                     Top.                (line 1196)
-* a:                                     Top.                (line 1196)
+* .:                                     Top.                (line 1197)
+* ?:                                     Top.                (line 1197)
+* a:                                     Top.                (line 1197)
 * index entry between item and itemx:    Top.                (line  309)
 * index entry between item and itemx <1>: Top.               (line  656)
 * index entry between item and itemx <2>: Top.               (line 1143)
@@ -1219,8 +1220,8 @@
 * index entry within multitable:         Top.                (line  125)
 * index entry within multitable <1>:     Top.                (line  472)
 * index entry within multitable <2>:     Top.                (line  960)
-* t-ruc:                                 Top.                (line 1196)
-* T-ruc:                                 Top.                (line 1196)
+* t-ruc:                                 Top.                (line 1197)
+* T-ruc:                                 Top.                (line 1197)
 
    fn
 
@@ -1229,8 +1230,8 @@
 * --foption:                             Top.                (line   16)
 * --foption <1>:                         Top.                (line  363)
 * --foption <2>:                         Top.                (line  721)
-* .:                                     Top.                (line 1196)
-* ?:                                     Top.                (line 1196)
+* .:                                     Top.                (line 1197)
+* ?:                                     Top.                (line 1197)
 * ``:                                    Top.                (line   16)
 * `` <1>:                                Top.                (line  363)
 * `` <2>:                                Top.                (line  721)
@@ -1240,7 +1241,7 @@
 * a <3>:                                 Top.                (line  655)
 * a <4>:                                 Top.                (line 1006)
 * a <5>:                                 Top.                (line 1142)
-* a <6>:                                 Top.                (line 1196)
+* a <6>:                                 Top.                (line 1197)
 * b:                                     Top.                (line  309)
 * b <1>:                                 Top.                (line  656)
 * b <2>:                                 Top.                (line 1143)
@@ -1322,8 +1323,8 @@
 * machin <3>:                            Top.                (line  514)
 * machin <4>:                            Top.                (line  999)
 * machin <5>:                            Top.                (line 1001)
-* t--ruc:                                Top.                (line 1196)
-* T--ruc:                                Top.                (line 1196)
+* t--ruc:                                Top.                (line 1197)
+* T--ruc:                                Top.                (line 1197)
 * truc:                                  Top.                (line  155)
 * truc <1>:                              Top.                (line  181)
 * truc <2>:                              Top.                (line  502)
@@ -1397,6 +1398,7 @@
 
 (1)
 
+
    ---------- Footnotes ----------
 
    (1) in footnote
@@ -1424,9 +1426,9 @@
 * -option:                               Top.                (line   16)
 * -option <1>:                           Top.                (line  363)
 * -option <2>:                           Top.                (line  721)
-* .:                                     Top.                (line 1196)
-* ?:                                     Top.                (line 1196)
-* a:                                     Top.                (line 1196)
+* .:                                     Top.                (line 1197)
+* ?:                                     Top.                (line 1197)
+* a:                                     Top.                (line 1197)
 * index entry between item and itemx:    Top.                (line  309)
 * index entry between item and itemx <1>: Top.               (line  656)
 * index entry between item and itemx <2>: Top.               (line 1143)
@@ -1439,16 +1441,16 @@
 * index entry within multitable:         Top.                (line  125)
 * index entry within multitable <1>:     Top.                (line  472)
 * index entry within multitable <2>:     Top.                (line  960)
-* t-ruc:                                 Top.                (line 1196)
-* T-ruc:                                 Top.                (line 1196)
+* t-ruc:                                 Top.                (line 1197)
+* T-ruc:                                 Top.                (line 1197)
 
 * Menu:
 
 * --foption:                             Top.                (line   16)
 * --foption <1>:                         Top.                (line  363)
 * --foption <2>:                         Top.                (line  721)
-* .:                                     Top.                (line 1196)
-* ?:                                     Top.                (line 1196)
+* .:                                     Top.                (line 1197)
+* ?:                                     Top.                (line 1197)
 * ``:                                    Top.                (line   16)
 * `` <1>:                                Top.                (line  363)
 * `` <2>:                                Top.                (line  721)
@@ -1458,7 +1460,7 @@
 * a <3>:                                 Top.                (line  655)
 * a <4>:                                 Top.                (line 1006)
 * a <5>:                                 Top.                (line 1142)
-* a <6>:                                 Top.                (line 1196)
+* a <6>:                                 Top.                (line 1197)
 * b:                                     Top.                (line  309)
 * b <1>:                                 Top.                (line  656)
 * b <2>:                                 Top.                (line 1143)
@@ -1540,8 +1542,8 @@
 * machin <3>:                            Top.                (line  514)
 * machin <4>:                            Top.                (line  999)
 * machin <5>:                            Top.                (line 1001)
-* t--ruc:                                Top.                (line 1196)
-* T--ruc:                                Top.                (line 1196)
+* t--ruc:                                Top.                (line 1197)
+* T--ruc:                                Top.                (line 1197)
 * truc:                                  Top.                (line  155)
 * truc <1>:                              Top.                (line  181)
 * truc <2>:                              Top.                (line  502)

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
  2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
  2013-04-07 14:01:17 UTC (rev 5250)
@@ -1283,6 +1283,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info  
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info  
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -1427,6 +1427,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
  2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
  2013-04-07 14:01:17 UTC (rev 5250)
@@ -1285,6 +1285,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -9,6 +9,7 @@
 
 Call macro in macro
 
+
      in format_command
 
    Something
@@ -190,9 +191,11 @@
 
                             ce-ntered line
 
+
    Call macro in itemize at the beginning of an item
    a-n itemize line in macro
 
+
           in format_command
 
      Something
@@ -281,6 +284,7 @@
 
    a-n itemize line item 1 Call macro in itemize in macro
 
+
           in format_command
 
      Something
@@ -462,9 +466,11 @@
 
                             ce-ntered line
 
+
    Call macro in enumerate at the beginning of enumerate
   1. in macro
 
+
           in format_command
 
      Something
@@ -553,6 +559,7 @@
 
   2. enumerate Call macro in enumerate in macro
 
+
           in format_command
 
      Something
@@ -734,12 +741,14 @@
 
                             ce-ntered line
 
+
 mu-ltitable headitem                        another tab
 
-----------------------------------------------------------------------------------------------
 multitable item                             multitable tab.  And after Call 
macro in
                                             mutitable after item
 in macro
 
+
      in format_command
 
 Something
@@ -831,6 +840,7 @@
 multitable item 2                           multitable tab 2 Call macro in 
mutitable in
                                             macro
                                             
+                                            
                                                  in format_command
                                             
                                             Something
@@ -1304,11 +1314,13 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...
      deffn call macro in deffn in macro
 
+
           in format_command
 
      Something
@@ -1490,10 +1502,12 @@
 
                             ce-ntered line
 
+
    call macro in deffn at the beginning
  -- c--ategory2: d--effn_name2 a--rguments2...
      in macro
 
+
           in format_command
 
      Something
@@ -1583,6 +1597,7 @@
 a line
      call macro in table in macro
 
+
           in format_command
 
      Something
@@ -1673,6 +1688,7 @@
 a line
      in macro
 
+
           in format_command
 
      Something
@@ -1855,9 +1871,11 @@
 
                             ce-ntered line
 
+
    call macro at cartouche begin
    in macro
 
+
      in format_command
 
    Something
@@ -1946,6 +1964,7 @@
 
    cartouche call macro in cartouche in macro
 
+
      in format_command
 
    Something
@@ -2127,9 +2146,11 @@
 
                             ce-ntered line
 
+
 call macro in flushleft
 in macro
 
+
      in format_command
 
 Something
@@ -2312,8 +2333,10 @@
 
                             ce-ntered line
 
+
                                                                in macro
 
+
      in format_command
 
                                                               Something
@@ -2496,6 +2519,7 @@
                             ce-ntered line
 
 
+
 
 Tag Table:
 Node: Top85

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
 2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
 2013-04-07 14:01:17 UTC (rev 5250)
@@ -1274,6 +1274,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info  
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info  
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -1283,6 +1283,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -1285,6 +1285,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info   
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info   
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -1566,6 +1566,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
 2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
 2013-04-07 14:01:17 UTC (rev 5250)
@@ -1283,6 +1283,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
  2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
  2013-04-07 14:01:17 UTC (rev 5250)
@@ -1285,6 +1285,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info  
    2013-04-07 13:05:12 UTC (rev 5249)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info  
    2013-04-07 14:01:17 UTC (rev 5250)
@@ -1285,6 +1285,7 @@
 
                             ce-ntered line
 
+
      s--mallexample
 
  -- c--ategory: d--effn_name a--rguments...




reply via email to

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