diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-21 17:08:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-21 17:09:11 +0000 |
commit | 2c67934f13f40110c09b8c3b95ed2ca21d6f132d (patch) | |
tree | 2c982fa4cc1034be204db6005575c1ff08a315da /perl.c | |
parent | 3f48f963d8052f436b4eec3a766d77f2675fee9a (diff) | |
download | perl-2c67934f13f40110c09b8c3b95ed2ca21d6f132d.tar.gz |
Note that nothing in core uses Perl_get_cv any more, and why it is hard to move
it to mathoms.c
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2529,6 +2529,8 @@ Perl_get_cvn_flags(pTHX_ const char *name, STRLEN len, I32 flags) return NULL; } +/* Nothing in core calls this now, but we can't replace it with a macro and + move it to mathoms.c as a macro would evaluate name twice. */ CV* Perl_get_cv(pTHX_ const char *name, I32 flags) { |