File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6471,7 +6471,7 @@ PP(pp_break)
64716471}
64726472
64736473static 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_)
65466546static void
65476547invoke_defer_block (pTHX_ void * arg_ )
65486548{
6549- _invoke_defer_block (aTHX_ CXt_DEFER , arg_ );
6549+ invoke_defer_block_ (aTHX_ CXt_DEFER , arg_ );
65506550}
65516551
65526552static void
65536553invoke_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
65586558PP (pp_pushdefer )
You can’t perform that action at this time.
0 commit comments