diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/regex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/posix/regex.c b/posix/regex.c index 3e942d41f5..eb5a6b3d47 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -2950,8 +2950,7 @@ regex_compile (pattern, size, syntax, bufp) if (!(syntax & RE_INTERVALS) /* If we're at `\{' and it's not the open-interval operator. */ - || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES)) - || (p - 2 == pattern && p == pend)) + || (syntax & RE_NO_BK_BRACES)) goto normal_backslash; handle_interval: |