diff options
author | Eric Muller <emuller@amazon.com> | 2019-02-10 04:31:41 -0800 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2019-03-11 16:06:41 -0700 |
commit | 44a67ddeb878f7639b30d1884e38b1525aab4f4a (patch) | |
tree | 5f7cb57e8290a27536c16cc25c0e99f33ecb5a90 | |
parent | 30d7c40f8ce9f47d733b1f43a93f20739772859e (diff) | |
download | harfbuzz-44a67ddeb878f7639b30d1884e38b1525aab4f4a.tar.gz |
Fix coding style.
-rw-r--r-- | src/hb-ot-shape-complex-hangul.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hb-ot-shape-complex-hangul.cc b/src/hb-ot-shape-complex-hangul.cc index 8e7c4c00..f084f6ad 100644 --- a/src/hb-ot-shape-complex-hangul.cc +++ b/src/hb-ot-shape-complex-hangul.cc @@ -214,8 +214,8 @@ preprocess_text_hangul (const hb_ot_shape_plan_t *plan HB_UNUSED, else { /* No valid syllable as base for tone mark; try to insert dotted circle. */ - if ( !(buffer->flags & HB_BUFFER_FLAG_DO_NOT_INSERT_DOTTED_CIRCLE) - && font->has_glyph (0x25CCu)) + if (!(buffer->flags & HB_BUFFER_FLAG_DO_NOT_INSERT_DOTTED_CIRCLE) && + font->has_glyph (0x25CCu)) { hb_codepoint_t chars[2]; if (!is_zero_width_char (font, u)) { |