projects
/
platform
/
upstream
/
libHarfBuzzSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e005c5
)
Set mask to 0, instead of 1, by default
author
Behdad Esfahbod
<behdad@behdad.org>
Fri, 11 Aug 2017 02:58:05 +0000
(19:58 -0700)
committer
Behdad Esfahbod
<behdad@behdad.org>
Fri, 11 Aug 2017 03:10:53 +0000
(20:10 -0700)
This shouldn't matter.
src/hb-buffer.cc
patch
|
blob
|
history
diff --git
a/src/hb-buffer.cc
b/src/hb-buffer.cc
index
6d13e17
..
2fcb06d
100644
(file)
--- a/
src/hb-buffer.cc
+++ b/
src/hb-buffer.cc
@@
-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++;