summaryrefslogtreecommitdiff
path: root/embed.fnc
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-12-26 12:30:25 +0000
committerDavid Mitchell <davem@iabyn.com>2016-02-03 09:19:18 +0000
commit274ed8ae511aa4c52d0c3e975eb44853d4f5336f (patch)
tree77967bff39296f7b4c6519c6b7618fa3d8da5555 /embed.fnc
parentfb2f5dcb57b41dc6ca1183fbeb492312ff40ed58 (diff)
downloadperl-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.fnc2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.fnc b/embed.fnc
index f83432d02a..7f2f7da69a 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -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|...