This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe5a0c8
)
regcomp.c: Greek multi-char folds fix
author
Karl Williamson
<public@khwilliamson.com>
Fri, 13 May 2011 16:30:39 +0000
(10:30 -0600)
committer
Karl Williamson
<public@khwilliamson.com>
Thu, 19 May 2011 18:07:09 +0000
(12:07 -0600)
GREEK PROSGEGRAMMENI and COMBINING GREEK YPOGEGRAMMENI fold to the
the first character of one of the tricky folds, and hence need
to be treated as potentially tricky themselves.
regcomp.c
patch
|
blob
|
blame
|
history
diff --git
a/regcomp.c
b/regcomp.c
index
21d54f8
..
130a6b7
100644
(file)
--- a/
regcomp.c
+++ b/
regcomp.c
@@
-8838,6
+8838,9
@@
tryagain:
break;
case 0x03B9: /* First char in iota series */
case 0x0399: /* Also capital IOTA */
+ case 0x1FBE: /* GREEK PROSGEGRAMMENI folds to 3B9 */
+ case 0x0345: /* COMBINING GREEK YPOGEGRAMMENI folds
+ to 3B9 */
if (p < RExC_end - 4) {
latest_char_state = iota_1;
if (len != 0) {