diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-15 22:21:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-15 22:21:41 +0000 |
commit | 1d3434b8c1ecb43ba830424cfca969ab84444ed7 (patch) | |
tree | f1b72339d10b3ba328781e90cf5ea9cfa0830cf0 /lib | |
parent | 067391eacdcfc760b09b573f48f90fa54dd5e5b4 (diff) | |
download | perl-1d3434b8c1ecb43ba830424cfca969ab84444ed7.tar.gz |
[win32] merge changes#982,984 from maintbranch
p4raw-link: @984 on //depot/maint-5.004/perl: aaffd3c27a04135bbc287616252cc5830b7c5543
p4raw-link: @982 on //depot/maint-5.004/perl: c5ed518aab0e5c6006080a87273e79a1b8e0d48b
p4raw-id: //depot/win32/perl@997
Diffstat (limited to 'lib')
-rw-r--r-- | lib/English.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/English.pm b/lib/English.pm index bbb6bd7b28..1cbacd11f8 100644 --- a/lib/English.pm +++ b/lib/English.pm @@ -137,8 +137,8 @@ sub import { # Error status. *CHILD_ERROR = *? ; - *OS_ERROR = *! ; - *ERRNO = *! ; + *OS_ERROR = \$! ; + *ERRNO = \$! ; *EXTENDED_OS_ERROR = *^E ; *EVAL_ERROR = *@ ; |