Skip to content

Commit 08c5ab5

Browse files
committed
regcomp.c: White space only
The previous commit removed a surrounding block; outdent correspondingly
1 parent ca79298 commit 08c5ab5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

regcomp.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,11 +2527,11 @@ S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags)
25272527
else if ((advance = isIDFIRST_lazy_if_safe(RExC_parse, RExC_end, UTF))) {
25282528
/* Note that the code here assumes well-formed UTF-8. Skip IDFIRST by
25292529
* using do...while */
2530-
do {
2531-
RExC_parse_advance(advance);
2532-
} while ( RExC_parse < RExC_end
2533-
&& (advance = isWORDCHAR_utf8_safe( (U8 *) RExC_parse,
2534-
(U8 *) RExC_end)));
2530+
do {
2531+
RExC_parse_advance(advance);
2532+
} while ( RExC_parse < RExC_end
2533+
&& (advance = isWORDCHAR_utf8_safe( (U8 *) RExC_parse,
2534+
(U8 *) RExC_end)));
25352535
} else {
25362536
RExC_parse_inc_by(1); /* so the <- from the vFAIL is after the offending
25372537
character */

0 commit comments

Comments
 (0)