summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-05-09 09:03:13 -0600
committerKarl Williamson <public@khwilliamson.com>2011-05-19 10:31:19 -0600
commitdddecdc7da8164c7ee5732195847b5ee1cfb9e36 (patch)
treef81ca986184f7d3f02c2428ed3cdc0b332a272d7 /regcomp.c
parent5473c57677ae94fffc3f7c7047121df4c2939e7a (diff)
downloadperl-dddecdc7da8164c7ee5732195847b5ee1cfb9e36.tar.gz
regex: Add comments
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/regcomp.c b/regcomp.c
index b9730f9560..f074aca830 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -8872,13 +8872,14 @@ tryagain:
break;
/* These are the tricky fold characters. Flush any
- * buffer first. */
+ * buffer first. (When adding to this list, also should
+ * add them to fold_grind.t to make sure get tested) */
case GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS:
case GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS:
case LATIN_SMALL_LETTER_SHARP_S:
case LATIN_CAPITAL_LETTER_SHARP_S:
- case 0x1FD3:
- case 0x1FE3:
+ case 0x1FD3: /* GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA */
+ case 0x1FE3: /* GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA */
if (len != 0) {
p = oldp;
goto loopdone;