summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-29 06:08:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-29 06:08:50 +0000
commitb195d4879f55e1610299cb9b1b55356940c2a577 (patch)
treec435f5d7ca63bfb78dd0ef72f8ff83d41f3479f1 /sv.h
parent7934575e193741c310ddb7f01d6d07c9981c3d29 (diff)
downloadperl-b195d4879f55e1610299cb9b1b55356940c2a577.tar.gz
more cleanup: avoid unused knowledge of "file GV" notion in CV and GV
p4raw-id: //depot/perl@4485
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index e99891dd22..116f17828a 100644
--- a/sv.h
+++ b/sv.h
@@ -276,8 +276,10 @@ struct xpvfm {
void (*xcv_xsub)(pTHXo_ CV*);
ANY xcv_xsubany;
GV * xcv_gv;
- GV * xcv_filegv;
- long xcv_depth; /* >= 2 indicates recursive call */
+#if defined(PERL_BINCOMPAT_5005)
+ GV * xcv_filegv; /* XXX unused (and deprecated) */
+#endif
+ long xcv_depth; /* >= 2 indicates recursive call */
AV * xcv_padlist;
CV * xcv_outside;
#ifdef USE_THREADS