Skip to content

Commit

Permalink
cop.h: fix je_mustcatch code comment.
Browse files Browse the repository at this point in the history
The comment explaining what the je_mustcatch field does was
incorrectly updated in 1999! Change it back to what it was originally.
  • Loading branch information
iabyn committed Jun 20, 2022
1 parent 9d1ea90 commit 5bfa3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cop.h
Expand Up @@ -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;
};
Expand Down

0 comments on commit 5bfa3d7

Please sign in to comment.