summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-01-21 17:08:36 +0000
committerNicholas Clark <nick@ccl4.org>2009-01-21 17:09:11 +0000
commit2c67934f13f40110c09b8c3b95ed2ca21d6f132d (patch)
tree2c982fa4cc1034be204db6005575c1ff08a315da /perl.c
parent3f48f963d8052f436b4eec3a766d77f2675fee9a (diff)
downloadperl-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl.c b/perl.c
index fbf3e86afc..66411eea90 100644
--- a/perl.c
+++ b/perl.c
@@ -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)
{