diff options
Diffstat (limited to 'ext/pcre/pcrelib/pcre_maketables.c')
-rw-r--r-- | ext/pcre/pcrelib/pcre_maketables.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcre_maketables.c b/ext/pcre/pcrelib/pcre_maketables.c index abc272f498..afe63d1b18 100644 --- a/ext/pcre/pcrelib/pcre_maketables.c +++ b/ext/pcre/pcrelib/pcre_maketables.c @@ -130,7 +130,9 @@ for (i = 0; i < 256; i++) 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; } + if (strchr("*+?{^.$|()[", i) != 0) x += ctype_meta; + *p++ = x; + } return yield; } |