projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9aa702e
)
return undef is of questionable style.
Jarkko Hietaniemi [Mon, 15 Apr 2002 12:52:58 +0000 (12:52 +0000)]
p4raw-id: //depot/perl@15924
lib/Hash/Util.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Hash/Util.pm
b/lib/Hash/Util.pm
index
a1c9e64
..
f6dcd7e
100644
(file)
--- a/
lib/Hash/Util.pm
+++ b/
lib/Hash/Util.pm
@@
-94,14
+94,14
@@
sub lock_keys (\%;@) {
Internals::SvREADONLY %$hash, 1;
}
- return undef;
+ return;
}
sub unlock_keys (\%) {
my($hash) = shift;
Internals::SvREADONLY %$hash, 0;
- return undef;
+ return;
}
=item lock_value