diff options
author | David Mitchell <davem@iabyn.com> | 2015-12-26 12:30:25 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:19:18 +0000 |
commit | 274ed8ae511aa4c52d0c3e975eb44853d4f5336f (patch) | |
tree | 77967bff39296f7b4c6519c6b7618fa3d8da5555 /embed.fnc | |
parent | fb2f5dcb57b41dc6ca1183fbeb492312ff40ed58 (diff) | |
download | perl-274ed8ae511aa4c52d0c3e975eb44853d4f5336f.tar.gz |
PUSHEVAL: make retop a parameter
Rather than doing cx->blk_eval.retop = NULL in PUSHEVAL, then relying on
the caller to subsequently change it to something more useful, make it an
arg to PUSHEVAL.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ p |const COP*|closest_cop |NN const COP *cop|NULLOK const OP *o \ : Used in perly.y ApdR |OP* |op_convert_list |I32 optype|I32 flags|NULLOK OP* o : Used in op.c and perl.c -pM |PERL_CONTEXT* |create_eval_scope|U32 flags +pM |void |create_eval_scope|NULLOK OP *retop|U32 flags Aprd |void |croak_sv |NN SV *baseex : croak()'s first parm can be NULL. Otherwise, mod_perl breaks. Afprd |void |croak |NULLOK const char* pat|... |