summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-12-26 22:28:59 +0000
committerDavid Mitchell <davem@iabyn.com>2016-02-03 09:19:19 +0000
commit490576d1e8ab582703d23e8ba95d5e4a881c04dc (patch)
treeb2fb57ebed58c9c11cccb55b355f4e4a8fcc4626 /pp_sys.c
parentf217cb3da329df6eff821d4b417ffdbeb710a939 (diff)
downloadperl-490576d1e8ab582703d23e8ba95d5e4a881c04dc.tar.gz
rename PUSHBLOCK,PUSHSUB etc to CX_PUSHBLOCK etc
Earlier all the POPFOO macros were renamed to CX_POPFOO to reflect the changed API (like POPBLOCK no longer decremented cxstack_ix). Now rename the PUSH ones for consistency.
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 5f0cf762ec..d3cf2e0b22 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -1389,8 +1389,8 @@ S_doform(pTHX_ CV *cv, GV *gv, OP *retop)
if (CvCLONE(cv))
cv = MUTABLE_CV(sv_2mortal(MUTABLE_SV(cv_clone(cv))));
- PUSHBLOCK(cx, CXt_FORMAT, gimme, PL_stack_sp, PL_savestack_ix);
- PUSHFORMAT(cx, cv, gv, retop);
+ CX_PUSHBLOCK(cx, CXt_FORMAT, gimme, PL_stack_sp, PL_savestack_ix);
+ CX_PUSHFORMAT(cx, cv, gv, retop);
if (CvDEPTH(cv) >= 2)
pad_push(CvPADLIST(cv), CvDEPTH(cv));
PAD_SET_CUR_NOSAVE(CvPADLIST(cv), CvDEPTH(cv));