diff options
author | Paul "LeoNerd" Evans <leonerd@leonerd.org.uk> | 2022-02-08 17:06:03 +0000 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2022-02-08 11:00:07 -0700 |
commit | afded0c3c2653583cf033d550399b212423ed7e9 (patch) | |
tree | d384653d8f5a03f01f0035e216d69ddcc6e7220b /pod | |
parent | 793b40899da3deddf808ef99021600c20f29a9e5 (diff) | |
download | perl-afded0c3c2653583cf033d550399b212423ed7e9.tar.gz |
Document that $^S is 1 inside a try block
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlvar.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 1b0c5bdc69..20ab65d189 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -1840,7 +1840,7 @@ Current state of the interpreter. $^S State --------- ------------------------------------- undef Parsing module, eval, or main program - true (1) Executing an eval + true (1) Executing an eval or try block false (0) Otherwise The first state may happen in C<$SIG{__DIE__}> and C<$SIG{__WARN__}> |