diff options
author | David Mitchell <davem@iabyn.com> | 2015-12-17 17:34:36 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:18:35 +0000 |
commit | 204bab9010640e4129be5ae2d5612fc7020c74ae (patch) | |
tree | 6f51140d97c3c0efa43283f8550e56003e959369 /cop.h | |
parent | e2b7854821e42e46fac5497cbe71ba128c0561da (diff) | |
download | perl-204bab9010640e4129be5ae2d5612fc7020c74ae.tar.gz |
TOPBLOCK: make comment clear its used by goto too
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -969,7 +969,7 @@ struct block { PL_tmps_floor = cx->cx_u.cx_blk.blku_old_tmpsfloor; \ PL_curpm = cx->blk_oldpm; -/* Continue a block elsewhere (NEXT and REDO). */ +/* Continue a block elsewhere (e.g. NEXT, REDO, GOTO). */ #define TOPBLOCK(cx) \ CX_DEBUG(cx, "TOP"); \ PL_stack_sp = PL_stack_base + cx->blk_oldsp, \ |