diff options
author | David Mitchell <davem@iabyn.com> | 2015-10-15 17:46:31 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 08:59:44 +0000 |
commit | 5da525e936e698594d244b27c2a587233b8ba165 (patch) | |
tree | 3539ced73e81f93b7dd1842061b3045264e18180 /pp_sort.c | |
parent | 5ee28f95c04acbb307826012a96b9fcf7baf3efd (diff) | |
download | perl-5da525e936e698594d244b27c2a587233b8ba165.tar.gz |
add CX_POP(cx) macro: glorified cxstack_ix--
but with extra checking goodness on debugging builds.
Diffstat (limited to 'pp_sort.c')
-rw-r--r-- | pp_sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1713,7 +1713,7 @@ PP(pp_sort) /* there isn't a POPNULL ! */ POPBLOCK(cx); - cxstack_ix--; + CX_POP(cx); POPSTACK; CATCH_SET(oldcatch); } |