diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-09 09:03:13 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-05-19 10:31:19 -0600 |
commit | dddecdc7da8164c7ee5732195847b5ee1cfb9e36 (patch) | |
tree | f81ca986184f7d3f02c2428ed3cdc0b332a272d7 /regcomp.c | |
parent | 5473c57677ae94fffc3f7c7047121df4c2939e7a (diff) | |
download | perl-dddecdc7da8164c7ee5732195847b5ee1cfb9e36.tar.gz |
regex: Add comments
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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; |