summaryrefslogtreecommitdiff
path: root/run.c
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-10-06 23:58:13 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-10-06 23:58:13 +0000
commitf6aff53ad72449dfefc5f6d9d303886bbb4ae545 (patch)
treecd85b258408b83f3ec2e3a02c989d3f58f4a76af /run.c
parent85581909df34d9ffca6c85cafeb2595c4cb89ffb (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.c b/run.c
index 5529fb6845..a952dac986 100644
--- a/run.c
+++ b/run.c
@@ -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);
}