diff options
author | David Mitchell <davem@iabyn.com> | 2015-10-16 13:07:23 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 08:59:45 +0000 |
commit | 9aba0c93f90eae29f42bd1b63c0079b8c7f4e364 (patch) | |
tree | 472e596ccc8d76f79b1f16098c7b2724be73adb2 /cop.h | |
parent | fc69996cc42063c74cbeea44eba0c7f4ec7a301e (diff) | |
download | perl-9aba0c93f90eae29f42bd1b63c0079b8c7f4e364.tar.gz |
rename S_doeval() to S_doeval_compile()
This makes it a bit more obvious what niche in the "eval" ecosystem
that it occupies.
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -745,7 +745,7 @@ struct block_eval { cx->blk_eval.old_namesv = (n ? newSVpv(n,0) : NULL); \ cx->blk_eval.old_eval_root = PL_eval_root; \ cx->blk_eval.cur_text = PL_parser ? PL_parser->linestr : NULL; \ - cx->blk_eval.cv = NULL; /* set by doeval(), as applicable */ \ + cx->blk_eval.cv = NULL; /* set by doeval_compile() as applicable */ \ cx->blk_eval.retop = NULL; \ cx->blk_eval.cur_top_env = PL_top_env; \ } STMT_END |