diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-12-06 13:01:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-12-06 13:01:36 +0000 |
commit | 4a53c07f7634485327374023491d928f581d1df0 (patch) | |
tree | 23997a2d05d65dd3c91e0463a1d567813beb0758 /gv.h | |
parent | c13c65c5dde11c3b839977bacba92ed0ff8f5c44 (diff) | |
download | perl-4a53c07f7634485327374023491d928f581d1df0.tar.gz |
Turn gv_fullname3 and gv_efullname3 into macros that call
gv_fullname4 and gv_efullname4 directly, saving overhead.
p4raw-id: //depot/perl@23612
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -153,3 +153,6 @@ Return the SV from the GV. #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 */ #define GV_NOINIT 0x10 /* add, but don't init symbol, if type != PVGV */ + +#define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE); +#define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE); |