diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-30 09:59:41 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-30 09:59:41 +0000 |
commit | 887986eb9473f45f115f0a49ec6a7899f43f8906 (patch) | |
tree | f23bf4a29472289d649c063d59081a86dbc7906b /gv.h | |
parent | f95f476d3e4012b98bef777c4cf9fdc247d48d71 (diff) | |
download | perl-887986eb9473f45f115f0a49ec6a7899f43f8906.tar.gz |
Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload()
with the extra TRUE argument.
p4raw-id: //depot/perl@25893
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -160,3 +160,4 @@ Return the SV from the GV. */ #define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE) #define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE) +#define gv_fetchmethod(stash, name) gv_fetchmethod_autoload(stash, name, TRUE) |