projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
41dc7f2
)
Protection against trailing spaces in embed.fnc
Rafael Garcia-Suarez [Tue, 30 Nov 2004 13:02:16 +0000 (13:02 +0000)]
p4raw-id: //depot/perl@23568
autodoc.pl
patch
|
blob
|
blame
|
history
embed.pl
patch
|
blob
|
blame
|
history
diff --git
a/autodoc.pl
b/autodoc.pl
index
5e7b3c2
..
c106408
100644
(file)
--- a/
autodoc.pl
+++ b/
autodoc.pl
@@
-45,6
+45,7
@@
sub walk_table (&@) {
$_ .= <IN>;
chomp;
}
+ s/\s+$//;
my @args;
if (/^\s*(#|$)/) {
@args = $_;
diff --git
a/embed.pl
b/embed.pl
index
0a878d6
..
30cc3ad
100755
(executable)
--- a/
embed.pl
+++ b/
embed.pl
@@
-107,6
+107,7
@@
sub walk_table (&@) {
$_ .= <IN>;
chomp;
}
+ s/\s+$//;
my @args;
if (/^\s*(#|$)/) {
@args = $_;