summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2022-05-28 12:32:10 +0100
committerDavid Mitchell <davem@iabyn.com>2022-06-20 11:27:22 +0100
commit5bfa3d726d044afe2d202a9df4a48540520b475a (patch)
tree7bfe0e9ae4eeb3920f38e2594280ca903aed4655 /cop.h
parent9d1ea90bdc34326fa7d7fa0f0149c2bc09791d88 (diff)
downloadperl-5bfa3d726d044afe2d202a9df4a48540520b475a.tar.gz
cop.h: fix je_mustcatch code comment.
The comment explaining what the je_mustcatch field does was incorrectly updated in 1999! Change it back to what it was originally.
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cop.h b/cop.h
index dd386d10aa..fc1dcd30dd 100644
--- a/cop.h
+++ b/cop.h
@@ -33,7 +33,7 @@ struct jmpenv {
struct jmpenv * je_prev;
Sigjmp_buf je_buf; /* uninit if je_prev is NULL */
int je_ret; /* last exception thrown */
- bool je_mustcatch; /* need to call longjmp()? */
+ bool je_mustcatch; /* longjmp()s must be caught locally */
U16 je_old_delaymagic; /* saved PL_delaymagic */
SSize_t je_old_stack_hwm;
};