summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-20 10:40:59 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-20 10:40:59 +0000
commitaed2304a0354e5cd0ca22ed008e1922f54b0f438 (patch)
tree1138ff6e0aa651adb9234639339fd66c3cfbf793 /gv.c
parent7c60e4340985406f3dd47ad08209883de1b8aa3b (diff)
downloadperl-aed2304a0354e5cd0ca22ed008e1922f54b0f438.tar.gz
Add a new CvISXSUB() macro, for abstracting the test as to whether a
PVCV is perl or XS. p4raw-id: //depot/perl@27241
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gv.c b/gv.c
index 555260f40b..d866b6636e 100644
--- a/gv.c
+++ b/gv.c
@@ -600,7 +600,7 @@ Perl_gv_autoload4(pTHX_ HV *stash, const char *name, STRLEN len, I32 method)
"Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated",
packname, (int)len, name);
- if (CvXSUB(cv)) {
+ if (CvISXSUB(cv)) {
/* rather than lookup/init $AUTOLOAD here
* only to have the XSUB do another lookup for $AUTOLOAD
* and split that value on the last '::',