diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-10-06 23:58:13 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-10-06 23:58:13 +0000 |
commit | f6aff53ad72449dfefc5f6d9d303886bbb4ae545 (patch) | |
tree | cd85b258408b83f3ec2e3a02c989d3f58f4a76af /run.c | |
parent | 85581909df34d9ffca6c85cafeb2595c4cb89ffb (diff) | |
download | perl-f6aff53ad72449dfefc5f6d9d303886bbb4ae545.tar.gz |
perl 5.003_06: dump.c embed.h gv.c run.c
Restore the 5.003 gv_fullname() and gv_efullname() functions.
Provide new 3-arg forms gv_fullname3() and gv_efullname3().
Diffstat (limited to 'run.c')
-rw-r--r-- | run.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ OP *op; case OP_GV: if (cGVOP->op_gv) { sv = NEWSV(0,0); - gv_fullname(sv, cGVOP->op_gv, Nullch); + gv_fullname3(sv, cGVOP->op_gv, Nullch); PerlIO_printf(Perl_debug_log, "(%s)", SvPV(sv, na)); SvREFCNT_dec(sv); } |