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 @@ -2881,7 +2881,7 @@ PP(pp_return)
28812881 assert (cxstack_ix >= 0 );
28822882 if (cxix < cxstack_ix ) {
28832883 I32 i ;
2884- /* Check for defer { return; } */
2884+ /* Check for defer { return; } */
28852885 for (i = cxstack_ix ; i > cxix ; i -- ) {
28862886 if (CxTYPE (& cxstack [i ]) == CXt_DEFER )
28872887 /* diag_listed_as: Can't "%s" out of a "defer" block */
@@ -3053,7 +3053,7 @@ S_unwind_loop(pTHX)
30533053
30543054 if (cxix < cxstack_ix ) {
30553055 I32 i ;
3056- /* Check for defer { last ... } etc */
3056+ /* Check for defer { last ... } etc */
30573057 for (i = cxstack_ix ; i > cxix ; i -- ) {
30583058 if (CxTYPE (& cxstack [i ]) == CXt_DEFER )
30593059 /* diag_listed_as: Can't "%s" out of a "defer" block */
@@ -3310,7 +3310,7 @@ PP(pp_goto)
33103310 else if (CxMULTICALL (cx ))
33113311 DIE (aTHX_ "Can't goto subroutine from a sort sub (or similar callback)" );
33123312
3313- /* Check for defer { goto &...; } */
3313+ /* Check for defer { goto &...; } */
33143314 for (ix = cxstack_ix ; ix > cxix ; ix -- ) {
33153315 if (CxTYPE (& cxstack [ix ]) == CXt_DEFER )
33163316 /* diag_listed_as: Can't "%s" out of a "defer" block */
You can’t perform that action at this time.
0 commit comments