summaryrefslogtreecommitdiff
path: root/gv.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-24 22:20:42 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-24 22:20:42 +0000
commitf4c556ac9d141bf86702c68d95acad2db5ec6874 (patch)
treed8f4ef6b026f71b605caa1a4475b5559d30b5039 /gv.h
parent1ba752a043289c0682ba096aba08751ac71b298a (diff)
downloadperl-f4c556ac9d141bf86702c68d95acad2db5ec6874.tar.gz
remove unused interpreter globals
p4raw-id: //depot/perl@4448
Diffstat (limited to 'gv.h')
-rw-r--r--gv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gv.h b/gv.h
index fc9985a2df..620cbc3345 100644
--- a/gv.h
+++ b/gv.h
@@ -17,7 +17,7 @@ struct gp {
GV * gp_egv; /* effective gv, if *glob */
CV * gp_cv; /* subroutine value */
U32 gp_cvgen; /* generational validity of cached gv_cv */
- I32 gp_lastexpr; /* used by nothing_in_common() */
+ U32 gp_flags; /* XXX unused */
line_t gp_line; /* line first declared at (for -w) */
GV * gp_filegv; /* file first declared in (for -w) */
};
@@ -67,7 +67,7 @@ HV *GvHVn();
#define GvCVGEN(gv) (GvGP(gv)->gp_cvgen)
#define GvCVu(gv) (GvGP(gv)->gp_cvgen ? Nullcv : GvGP(gv)->gp_cv)
-#define GvLASTEXPR(gv) (GvGP(gv)->gp_lastexpr)
+#define GvGPFLAGS(gv) (GvGP(gv)->gp_flags)
#define GvLINE(gv) (GvGP(gv)->gp_line)
#define GvFILEGV(gv) (GvGP(gv)->gp_filegv)