Skip to content

Commit 4dafb72

Browse files
committed
pp_ctl.c Convert _invoke_defer_block to legal name
1 parent 18732e8 commit 4dafb72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pp_ctl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6471,7 +6471,7 @@ PP(pp_break)
64716471
}
64726472

64736473
static void
6474-
_invoke_defer_block(pTHX_ U8 type, void * arg_)
6474+
invoke_defer_block_(pTHX_ U8 type, void * arg_)
64756475
{
64766476
OP *start = (OP *) arg_;
64776477
#ifdef DEBUGGING
@@ -6546,13 +6546,13 @@ _invoke_defer_block(pTHX_ U8 type, void * arg_)
65466546
static void
65476547
invoke_defer_block(pTHX_ void * arg_)
65486548
{
6549-
_invoke_defer_block(aTHX_ CXt_DEFER, arg_);
6549+
invoke_defer_block_(aTHX_ CXt_DEFER, arg_);
65506550
}
65516551

65526552
static void
65536553
invoke_finally_block(pTHX_ void * arg_)
65546554
{
6555-
_invoke_defer_block(aTHX_ CXt_DEFER|CXp_FINALLY, arg_);
6555+
invoke_defer_block_(aTHX_ CXt_DEFER|CXp_FINALLY, arg_);
65566556
}
65576557

65586558
PP(pp_pushdefer)

0 commit comments

Comments
 (0)