summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-04-26 19:27:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-04-26 19:27:48 +0000
commit2dbfce8813da0261ef4eae6c5c9894a131e58e6c (patch)
treed89779eb2eb666d69c97f10a3327b67b9a3fc3af
parent7013e6ae0ee41c19b7e4c3937d6f838af15b9af8 (diff)
downloadperl-2dbfce8813da0261ef4eae6c5c9894a131e58e6c.tar.gz
Dethinko from Robin Houston.
p4raw-id: //depot/perl@9864
-rw-r--r--ext/B/B/Deparse.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B/Deparse.pm b/ext/B/B/Deparse.pm
index a982da217f..3679a96dcc 100644
--- a/ext/B/B/Deparse.pm
+++ b/ext/B/B/Deparse.pm
@@ -2763,7 +2763,7 @@ sub uninterp {
# the same, but treat $|, $), $( and $ at the end of the string differently
sub re_uninterp {
my($str) = @_;
- $str =~ s/(^|\G|[^\\])((?:\\\\)*)([\$\@](?!\||\)|\$\(|$)|\\[uUlLQE])/$1$2\\$3/g;
+ $str =~ s/(^|\G|[^\\])((?:\\\\)*)([\$\@](?!\||\)|\(|$)|\\[uUlLQE])/$1$2\\$3/g;
return $str;
}