Dethinko from Robin Houston.
Jarkko Hietaniemi [Thu, 26 Apr 2001 19:27:48 +0000 (19:27 +0000)]
p4raw-id: //depot/perl@9864

ext/B/B/Deparse.pm

index a982da2..3679a96 100644 (file)
@@ -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;
 }