Regex: Update PCRE to v8.35.

I was über lazy at first, so took libs from SM.
But actually it's quite easy to compile, so let's update to latest version \o/.
This commit is contained in:
Arkshine
2014-07-05 13:53:30 +02:00
parent d1153b8049
commit d4de0e6f1e
241 changed files with 51074 additions and 15011 deletions

View File

@ -63,6 +63,7 @@ Memory allocation (code space): 20
4 End
------------------------------------------------------------------
Capturing subpattern count = 0
May match empty string
Options: extended
No first char
No need char
@ -99,15 +100,13 @@ Memory allocation (code space): 28
------------------------------------------------------------------
/x{1,3}+/BM
Memory allocation (code space): 56
Memory allocation (code space): 40
------------------------------------------------------------------
0 11 Bra
2 7 Once
4 x
6 x{0,2}
9 7 Ket
11 11 Ket
13 End
0 7 Bra
2 x
4 x{0,2}+
7 7 Ket
9 End
------------------------------------------------------------------
/(x)*+/BM
@ -138,7 +137,7 @@ Memory allocation (code space): 220
31 [bc]+
41 13 Ket
43 5 CBra 5
46 \w*
46 \w*+
48 5 Ket
50 47 Ket
52 52 Ket
@ -327,7 +326,7 @@ Memory allocation (code space): 28
------------------------------------------------------------------
/\x{110000}/8BM
Failed: character value in \x{...} sequence is too large at offset 9
Failed: character value in \x{} or \o{} is too large at offset 9
/[\x{ff}]/8BM
Memory allocation (code space): 28
@ -503,7 +502,7 @@ Memory allocation (code space): 48
Memory allocation (code space): 84
------------------------------------------------------------------
0 18 Bra
2 [+\-\p{Nd}]+
2 [+\-\p{Nd}]++
18 18 Ket
20 End
------------------------------------------------------------------
@ -652,7 +651,7 @@ Memory allocation (code space): 28
/[[:^alpha:][:^cntrl:]]+/8WB
------------------------------------------------------------------
0 18 Bra
2 [ -~\x80-\xff\P{L}]+
2 [ -~\x80-\xff\P{L}]++
18 18 Ket
20 End
------------------------------------------------------------------
@ -660,7 +659,7 @@ Memory allocation (code space): 28
/[[:^cntrl:][:^alpha:]]+/8WB
------------------------------------------------------------------
0 18 Bra
2 [ -~\x80-\xff\P{L}]+
2 [ -~\x80-\xff\P{L}]++
18 18 Ket
20 End
------------------------------------------------------------------
@ -668,7 +667,7 @@ Memory allocation (code space): 28
/[[:alpha:]]+/8WB
------------------------------------------------------------------
0 10 Bra
2 [\p{L}]+
2 [\p{L}]++
10 10 Ket
12 End
------------------------------------------------------------------
@ -676,7 +675,7 @@ Memory allocation (code space): 28
/[[:^alpha:]\S]+/8WB
------------------------------------------------------------------
0 13 Bra
2 [\P{L}\P{Xsp}]+
2 [\P{L}\P{Xsp}]++
13 13 Ket
15 End
------------------------------------------------------------------