diff options
Diffstat (limited to 'booki.c')
| -rw-r--r-- | booki.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -256,6 +256,13 @@ bool comparable(const char* pattern, const char* candidate, int len) { return false; } } + // combining diacritics + else if (c >= 0xCC && c <= 0xCD) { + // these exist afterwards, so skip this one and the following + candidate += 2; + c = *candidate; + continue; + } else { // don't know how to compare these return false; |
