This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a808ed
)
Quieten B::Deparse warnings (fixes #113464).
author
Paul Johnson
<paul@pjcj.net>
Sat, 2 Jun 2012 12:44:47 +0000
(14:44 +0200)
committer
Father Chrysostomos
<sprout@cpan.org>
Sat, 9 Jun 2012 05:27:50 +0000
(22:27 -0700)
dist/B-Deparse/Deparse.pm
patch
|
blob
|
blame
|
history
diff --git
a/dist/B-Deparse/Deparse.pm
b/dist/B-Deparse/Deparse.pm
index
bbb730a
..
049e385
100644
(file)
--- a/
dist/B-Deparse/Deparse.pm
+++ b/
dist/B-Deparse/Deparse.pm
@@
-2500,7
+2500,7
@@
sub rv2gv_or_string {
my($self,$op) = @_;
if ($op->name eq "gv") { # could be open("open") or open("###")
my($name,$quoted) =
- $self->stash_variable_name(
undef,
$self->gv_or_padgv($op));
+ $self->stash_variable_name(
"",
$self->gv_or_padgv($op));
$quoted ? $name : "*$name";
}
else {