Skip to content

Commit e978a30

Browse files
committed
Add comment to explain the if-else-endif statements
1 parent c2216b2 commit e978a30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standalone/regex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if (preg->re_pcre == NULL) return AP_REG_INVARG;
9191
pcre2_pattern_info((const pcre2_code *)preg->re_pcre, PCRE2_INFO_CAPTURECOUNT, &nsub);
9292
preg->re_nsub = nsub;
9393

94-
#else
94+
#else // otherwise use PCRE
9595
if ((cflags & AP_REG_ICASE) != 0) options |= PCRE_CASELESS;
9696
if ((cflags & AP_REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
9797

0 commit comments

Comments
 (0)