diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-28 04:58:29 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-28 04:58:29 +0000 |
commit | 8593bda5eaf2f40ae7a609c286d223c8f721fc0d (patch) | |
tree | 1e073ef96866a8d08b7c1705857ef8eb6acf00c3 /pod/perlsub.pod | |
parent | 71d280e38f6b1166e3ba01f7a839868275eb4b7f (diff) | |
download | perl-8593bda5eaf2f40ae7a609c286d223c8f721fc0d.tar.gz |
downgrade fatal error on C<"foo@nosucharray.com"> to optional warning
(from Mark-Jason Dominus)
p4raw-id: //depot/perl@6122
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r-- | pod/perlsub.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index f1b87923ef..f45f5494f6 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -357,7 +357,7 @@ A compilation error results otherwise. An inner block may countermand this with C<no strict 'vars'>. A C<my> has both a compile-time and a run-time effect. At compile -time, the compiler takes notice of it. The principle usefulness +time, the compiler takes notice of it. The principal usefulness of this is to quiet C<use strict 'vars'>, but it is also essential for generation of closures as detailed in L<perlref>. Actual initialization is delayed until run time, though, so it gets executed |