projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
2a488fe
)
Quieten warnings in Deparse.pm
Paul Johnson [Sun, 8 Sep 2002 23:50:11 +0000 (
01:50
+0200)]
Message-ID: <
20020908215011
.GA879@pjcj.net>
p4raw-id: //depot/perl@17883
ext/B/B/Deparse.pm
patch
|
blob
|
blame
|
history
diff --git
a/ext/B/B/Deparse.pm
b/ext/B/B/Deparse.pm
index
6a57872
..
f48057b
100644
(file)
--- a/
ext/B/B/Deparse.pm
+++ b/
ext/B/B/Deparse.pm
@@
-3041,7
+3041,7
@@
sub re_uninterp_extended {
| \\[uUlLQE]
)
- /length($4) ? "$1$2$4" : "$1$2\\$3"/xeg;
+ /defined($4) && length($4) ? "$1$2$4" : "$1$2\\$3"/xeg;
return $str;
}