changeset 15907:53ec9063dc6d

maint: Merge stable to default to pick up Perl doc-building fix.
author Rik <rik@octave.org>
date Sat, 05 Jan 2013 18:40:49 -0800
parents d2774d202323 (current diff) 1af9fa3d6a0b (diff)
children 5a4a07a2ec73
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/munge-texi.pl	Sat Jan 05 19:58:22 2013 -0500
+++ b/doc/interpreter/munge-texi.pl	Sat Jan 05 18:40:49 2013 -0800
@@ -26,7 +26,7 @@
   
   do 
   {
-    chomp;
+    s/\s*$//;   # strip EOL character(s)
     $symbol = substr ($_,1);
     $docstring = extract_docstring ();
     if ($help_text{$symbol})
@@ -46,7 +46,7 @@
 # Process .txi to .texi by expanding @DOCSTRING, @EXAMPLEFILE macros
 
 # Add warning header
-print '@c DO NOT EDIT!  Generated automatically by munge-texi.',"\n\n";
+print '@c DO NOT EDIT!  Generated automatically by munge-texi.pl.',"\n\n";
 
 TXI_LINE: while (<STDIN>)
 {