summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2009-10-12 18:55:13 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2009-10-12 18:55:13 +0000
commit5e4a62a883df0b2fd06fae43c04ebd0bd856cf5a (patch)
treebac79f345a24a4ef05f9bc32d70df904d437a457 /gnu
parent9ee81f49d98a3a8c104e555916192c1eaf02f94f (diff)
Undo keywork expansion by escaping the dollar signs as octal
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/perl/pod/buildtoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/pod/buildtoc b/gnu/usr.bin/perl/pod/buildtoc
index cae3dfe6ebb..f06e823e8a0 100644
--- a/gnu/usr.bin/perl/pod/buildtoc
+++ b/gnu/usr.bin/perl/pod/buildtoc
@@ -398,7 +398,7 @@ sub podset {
output "\n \n\n=head2 ";
$_ = <>;
# Remove svn keyword expansions from the Perl FAQ
- s/ \(\$Revision: \d+ \$\)//g;
+ s/ \(\045Revision: \d+ \045\)//g;
if ( /^\s*$pod\b/ ) {
s/$pod\.pm/$pod/; # '.pm' in NAME !?
output $_;