Minor
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 7 Jun 2011 19:51:40 +0000 (15:51 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 7 Jun 2011 19:51:40 +0000 (15:51 -0400)
src/hb-ot-shape.cc

index 9df92a3..34f1570 100644 (file)
@@ -207,6 +207,7 @@ hb_form_clusters (hb_ot_shape_context_t *c)
 {
   unsigned int count = c->buffer->len;
   for (unsigned int i = 1; i < count; i++)
+    /* TODO: Match other mark types too? */
     if (c->buffer->info[i].general_category() == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
       c->buffer->info[i].cluster = c->buffer->info[i - 1].cluster;
 }