diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-04 16:14:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 16:14:25 +0100 |
commit | fcabdf9e8351fef3ad50fea48e9c1f8420e6421e (patch) | |
tree | c5c156c6dbf9c261d5e9422fe05b2d663b02375f /thirdparty/pcre2/src/pcre2_maketables.c | |
parent | f173f8625d9a559b8a078bf5c4ba85ab36a2f222 (diff) | |
parent | 0455bc64b62154b7b966c598a80ec2eb4f66d088 (diff) |
Merge pull request #26585 from akien-mga/pcre2-10.32
pcre2: Sync with upstream 10.32
Diffstat (limited to 'thirdparty/pcre2/src/pcre2_maketables.c')
-rw-r--r-- | thirdparty/pcre2/src/pcre2_maketables.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/thirdparty/pcre2/src/pcre2_maketables.c b/thirdparty/pcre2/src/pcre2_maketables.c index 2c7ae84d86..537edba8c3 100644 --- a/thirdparty/pcre2/src/pcre2_maketables.c +++ b/thirdparty/pcre2/src/pcre2_maketables.c @@ -7,7 +7,7 @@ and semantics are as close as possible to those of the Perl 5 language. Written by Philip Hazel Original API code Copyright (c) 1997-2012 University of Cambridge - New API code Copyright (c) 2016 University of Cambridge + New API code Copyright (c) 2016-2018 University of Cambridge ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -141,13 +141,6 @@ for (i = 0; i < 256; i++) if (isdigit(i)) x += ctype_digit; if (isxdigit(i)) x += ctype_xdigit; if (isalnum(i) || i == '_') x += ctype_word; - - /* Note: strchr includes the terminating zero in the characters it considers. - In this instance, that is ok because we want binary zero to be flagged as a - meta-character, which in this sense is any character that terminates a run - of data characters. */ - - if (strchr("\\*+?{^.$|()[", i) != 0) x += ctype_meta; *p++ = x; } |