Set mask to 0, instead of 1, by default
authorBehdad Esfahbod <behdad@behdad.org>
Fri, 11 Aug 2017 02:58:05 +0000 (19:58 -0700)
committerBehdad Esfahbod <behdad@behdad.org>
Fri, 11 Aug 2017 03:10:53 +0000 (20:10 -0700)
This shouldn't matter.

src/hb-buffer.cc

index 6d13e17..2fcb06d 100644 (file)
@@ -267,7 +267,7 @@ hb_buffer_t::add (hb_codepoint_t  codepoint,
 
   memset (glyph, 0, sizeof (*glyph));
   glyph->codepoint = codepoint;
-  glyph->mask = 1;
+  glyph->mask = 0;
   glyph->cluster = cluster;
 
   len++;