diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-20 10:40:59 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-20 10:40:59 +0000 |
commit | aed2304a0354e5cd0ca22ed008e1922f54b0f438 (patch) | |
tree | 1138ff6e0aa651adb9234639339fd66c3cfbf793 /cv.h | |
parent | 7c60e4340985406f3dd47ad08209883de1b8aa3b (diff) | |
download | perl-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 'cv.h')
-rw-r--r-- | cv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ Returns the stash of the CV. #define CvWEAKOUTSIDE_on(cv) (CvFLAGS(cv) |= CVf_WEAKOUTSIDE) #define CvWEAKOUTSIDE_off(cv) (CvFLAGS(cv) &= ~CVf_WEAKOUTSIDE) - +#define CvISXSUB(cv) (CvXSUB(cv) ? TRUE : FALSE) /* =head1 CV reference counts and CvOUTSIDE |