summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-11-25 19:29:38 +0100
committerYves Orton <demerphq@gmail.com>2022-12-09 18:34:58 +0100
commit1e862009596d84d3418f28a2edf9e991c19f135a (patch)
tree9cf907659a314983d3bb6fc5f504bed47f90c67b /pp_ctl.c
parent7213797de96c01cd94037e3f00467c6440627569 (diff)
downloadperl-1e862009596d84d3418f28a2edf9e991c19f135a.tar.gz
pp_ctl.c - make ENTER debug data a bit more clear
We will have more than one INC hook in the future.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index d9d1a748de..02c67fc91c 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -4294,7 +4294,7 @@ S_require_file(pTHX_ SV *sv)
SvSetSV_nosteal(nsv,sv);
}
- ENTER_with_name("call_INC");
+ ENTER_with_name("call_INC_hook");
SAVETMPS;
EXTEND(SP, 2);
@@ -4374,7 +4374,7 @@ S_require_file(pTHX_ SV *sv)
PUTBACK;
FREETMPS;
- LEAVE_with_name("call_INC");
+ LEAVE_with_name("call_INC_hook");
/* Now re-mortalize it. */
sv_2mortal(filter_cache);