From 5da525e936e698594d244b27c2a587233b8ba165 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Thu, 15 Oct 2015 17:46:31 +0100 Subject: add CX_POP(cx) macro: glorified cxstack_ix-- but with extra checking goodness on debugging builds. --- pp_sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pp_sort.c') diff --git a/pp_sort.c b/pp_sort.c index 8a4bb0f759..5ccdacaf08 100644 --- a/pp_sort.c +++ b/pp_sort.c @@ -1713,7 +1713,7 @@ PP(pp_sort) /* there isn't a POPNULL ! */ POPBLOCK(cx); - cxstack_ix--; + CX_POP(cx); POPSTACK; CATCH_SET(oldcatch); } -- cgit v1.2.1