diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-06 22:42:19 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-09-06 23:00:57 -0700 |
commit | 4bff32c56f5c1d1515069d4ce0d05531758f6561 (patch) | |
tree | 5c136bac90c00a726e052c4fc4a5b11813a24280 /gv.h | |
parent | b69f5762a54ed8985a9b50b54cbf5912ffda3ea4 (diff) | |
download | perl-4bff32c56f5c1d1515069d4ce0d05531758f6561.tar.gz |
Remove GV_ADDINEVAL
This flag does absolutely nothing. The use of 8 as a flag to pass to
gv_fetchpv was added in this commit:
commit 93233ece75d8fe98a77377e72c4d6004c5ea8691
Author: Chip Salzenberg <chip@pobox.com>
Date: Tue Mar 3 04:39:49 1998 +0000
[win32] merge problematic maintpatch to op.c
#77: "Eliminate double warnings under C<package;>"
Files: gv.c op.c toke.c
But nothing in gv.c made use of it at the time.
Later it was changed into a #define in commit 0f303493c6. Subse-
quently more uses were added in 77ca0c92 and f558d5af04.
It still does nothing. Nothing outside the perl core references it.
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -221,7 +221,7 @@ Return the CV from the GV. #define GV_ADDMULTI 0x02 /* add, pretending it has been added already; used also by gv_init_* */ #define GV_ADDWARN 0x04 /* add, but warn if symbol wasn't already there */ -#define GV_ADDINEVAL 0x08 /* add, as though we're doing so within an eval */ + /* 0x08 UNUSED */ #define GV_NOINIT 0x10 /* add, but don't init symbol, if type != PVGV */ /* This is used by toke.c to avoid turing placeholder constants in the symbol table into full PVGVs with attached constant subroutines. */ |