summaryrefslogtreecommitdiff
path: root/cv.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-07-08 22:59:01 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-07-08 22:59:01 +0000
commitd22779f5bc9230e35caedc48714cf84a936fc040 (patch)
treec34ab2135b4bb633a78d2a3dd56975444638cbe8 /cv.h
parentae21ab7a583996be9282ef39a5a1bcfa2a228633 (diff)
downloadperl-d22779f5bc9230e35caedc48714cf84a936fc040.tar.gz
Retract #11212.
p4raw-id: //depot/perl@11223
Diffstat (limited to 'cv.h')
-rw-r--r--cv.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/cv.h b/cv.h
index bf9e180e42..7fa9400965 100644
--- a/cv.h
+++ b/cv.h
@@ -34,7 +34,6 @@ struct xpvcv {
struct perl_thread *xcv_owner; /* current owner thread */
#endif /* USE_THREADS */
cv_flags_t xcv_flags;
- HV * xcv_defstash;
};
/*
@@ -70,7 +69,6 @@ Returns the stash of the CV.
#define CvOWNER(sv) ((XPVCV*)SvANY(sv))->xcv_owner
#endif /* USE_THREADS */
#define CvFLAGS(sv) ((XPVCV*)SvANY(sv))->xcv_flags
-#define CvDEFSTASH(sv) ((XPVCV*)SvANY(sv))->xcv_defstash
#define CVf_CLONE 0x0001 /* anon CV uses external lexicals */
#define CVf_CLONED 0x0002 /* a clone of one of those */