Skip to content

Commit e09fa77

Browse files
committed
pp_ctl.c: Remove extra whitespace in inline comments
This will enable an accurate search for 'Check for defer'.
1 parent b3ee914 commit e09fa77

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
@@ -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 */

0 commit comments

Comments
 (0)