chiark / gitweb /
untested grapheme cluster boundary detection
[disorder] / lib / words.c
index 7d0d779630269b435259e9cf2fb63342082986cd..01c9db2c9e719b67d2fbef41cae620937aa7030d 100644 (file)
@@ -41,7 +41,6 @@ const char *casefold(const char *ptr) {
 
 static enum unicode_gc_cat cat(uint32_t c) {
   if(c < UNICODE_NCHARS) {
-    /* If this a known character, convert it to lower case */
     const struct unidata *const ud = &unidata[c / UNICODE_MODULUS][c % UNICODE_MODULUS];
     return ud->gc;
   } else