added a comment on the change made in the previous commit

This commit is contained in:
hyung-hwan 2020-03-09 15:36:01 +00:00
parent 75ef3a949a
commit 09360c4abe

View File

@ -277,14 +277,14 @@ tre_parse_bracket_items(tre_parse_ctx_t *ctx, int negate,
if (min > max)
status = REG_ERANGE;
}
/* BACON */
/* HAWK: handle \ as an escaper */
else if (re + 1 < ctx->re_end && *re == CHAR_BACKSLASH)
{
/* escaped character inside [] */
min = max = *(re + 1);
re += 2;
}
/* END BACON */
/* END HAWK */
else if (re + 1 < ctx->re_end
&& *re == CHAR_LBRACKET && *(re + 1) == CHAR_PERIOD)
status = REG_ECOLLATE;