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:
ae5c130
)
[win32] merge change#681 from maintbranch
author
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 13 May 1998 09:51:43 +0000
(09:51 +0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 13 May 1998 09:51:43 +0000
(09:51 +0000)
p4raw-link: @681 on //depot/maint-5.004/perl:
ca1e21bae662c1cebe4e218dc45cb163ecf67263
p4raw-id: //depot/win32/perl@927
ext/Fcntl/Fcntl.pm
patch
|
blob
|
blame
|
history
diff --git
a/ext/Fcntl/Fcntl.pm
b/ext/Fcntl/Fcntl.pm
index
74de3df
..
ab19670
100644
(file)
--- a/
ext/Fcntl/Fcntl.pm
+++ b/
ext/Fcntl/Fcntl.pm
@@
-76,9
+76,8
@@
$VERSION = "1.03";
);
sub AUTOLOAD {
- my($constname);
- ($constname = $AUTOLOAD) =~ s/.*:://;
- my $val = constant($constname, (@_ && (caller(0))[4]) ? $_[0] : 0);
+ (my $constname = $AUTOLOAD) =~ s/.*:://;
+ my $val = constant($constname, 0);
if ($! != 0) {
if ($! =~ /Invalid/) {
$AutoLoader::AUTOLOAD = $AUTOLOAD;
@@
-90,7
+89,7
@@
sub AUTOLOAD {
";
}
}
-
eval "sub $AUTOLOAD { $val }"
;
+
*$AUTOLOAD = sub { $val }
;
goto &$AUTOLOAD;
}