From 241b3647866bfbc96ab96ded2ca2dc211090821c Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Mon, 24 Nov 2025 18:28:49 -0500 Subject: [PATCH] pp_ctl.c: Remove extra whitespace in inline comments This will enable an accurate search for 'Check for defer'. --- pp_ctl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pp_ctl.c b/pp_ctl.c index 37846587b975..1197c5490b96 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -2881,7 +2881,7 @@ PP(pp_return) assert(cxstack_ix >= 0); if (cxix < cxstack_ix) { I32 i; - /* Check for defer { return; } */ + /* Check for defer { return; } */ for(i = cxstack_ix; i > cxix; i--) { if(CxTYPE(&cxstack[i]) == CXt_DEFER) /* diag_listed_as: Can't "%s" out of a "defer" block */ @@ -3053,7 +3053,7 @@ S_unwind_loop(pTHX) if (cxix < cxstack_ix) { I32 i; - /* Check for defer { last ... } etc */ + /* Check for defer { last ... } etc */ for(i = cxstack_ix; i > cxix; i--) { if(CxTYPE(&cxstack[i]) == CXt_DEFER) /* diag_listed_as: Can't "%s" out of a "defer" block */ @@ -3310,7 +3310,7 @@ PP(pp_goto) else if (CxMULTICALL(cx)) DIE(aTHX_ "Can't goto subroutine from a sort sub (or similar callback)"); - /* Check for defer { goto &...; } */ + /* Check for defer { goto &...; } */ for(ix = cxstack_ix; ix > cxix; ix--) { if(CxTYPE(&cxstack[ix]) == CXt_DEFER) /* diag_listed_as: Can't "%s" out of a "defer" block */