texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp Texinfo/Parser.pm t/results/macro/ma...


From: Patrice Dumas
Subject: texinfo/tp Texinfo/Parser.pm t/results/macro/ma...
Date: Mon, 01 Nov 2010 14:46:39 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        10/11/01 14:46:38

Modified files:
        tp/Texinfo     : Parser.pm 
        tp/t/results/macro: macro_in_misc_commands.pl 
        tp/t/results/misc_commands: also_not_line.pl 
        tp/t/results/value: value_in_misc_commands.pl 

Log message:
        Parse @noindent/@indent by incorporating their information in following
        paragraph.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Parser.pm?cvsroot=texinfo&r1=1.139&r2=1.140
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/macro/macro_in_misc_commands.pl?cvsroot=texinfo&r1=1.34&r2=1.35
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/misc_commands/also_not_line.pl?cvsroot=texinfo&r1=1.18&r2=1.19
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/t/results/value/value_in_misc_commands.pl?cvsroot=texinfo&r1=1.28&r2=1.29

Patches:
Index: Texinfo/Parser.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Parser.pm,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -b -r1.139 -r1.140
--- Texinfo/Parser.pm   1 Nov 2010 14:37:54 -0000       1.139
+++ Texinfo/Parser.pm   1 Nov 2010 14:46:38 -0000       1.140
@@ -1139,6 +1139,7 @@
     }
     push @{$current->{'contents'}}, 
             { 'type' => 'paragraph', 'parent' => $current, 'contents' => [] };
+    $current->{'contents'}->[-1]->{'extra'}->{$indent} = 1 if ($indent);
     $current = $current->{'contents'}->[-1];
     print STDERR "PARAGRAPH\n" if ($self->{'debug'});
     return $current;

Index: t/results/macro/macro_in_misc_commands.pl
===================================================================
RCS file: 
/sources/texinfo/texinfo/tp/t/results/macro/macro_in_misc_commands.pl,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- t/results/macro/macro_in_misc_commands.pl   1 Nov 2010 09:01:08 -0000       
1.34
+++ t/results/macro/macro_in_misc_commands.pl   1 Nov 2010 14:46:38 -0000       
1.35
@@ -2433,6 +2433,9 @@
 '
             }
           ],
+          'extra' => {
+            'noindent' => 1
+          },
           'parent' => {},
           'type' => 'paragraph'
         },

Index: t/results/misc_commands/also_not_line.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/t/results/misc_commands/also_not_line.pl,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- t/results/misc_commands/also_not_line.pl    1 Nov 2010 09:01:09 -0000       
1.18
+++ t/results/misc_commands/also_not_line.pl    1 Nov 2010 14:46:38 -0000       
1.19
@@ -138,6 +138,9 @@
 '
         }
       ],
+      'extra' => {
+        'noindent' => 1
+      },
       'parent' => {},
       'type' => 'paragraph'
     },

Index: t/results/value/value_in_misc_commands.pl
===================================================================
RCS file: 
/sources/texinfo/texinfo/tp/t/results/value/value_in_misc_commands.pl,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- t/results/value/value_in_misc_commands.pl   1 Nov 2010 09:01:14 -0000       
1.28
+++ t/results/value/value_in_misc_commands.pl   1 Nov 2010 14:46:38 -0000       
1.29
@@ -2185,6 +2185,9 @@
 '
             }
           ],
+          'extra' => {
+            'noindent' => 1
+          },
           'parent' => {},
           'type' => 'paragraph'
         },



reply via email to

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