[config] Don't disable emoji sequences in HB_TINY
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 26 Jun 2019 21:57:48 +0000 (14:57 -0700)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 26 Jun 2019 21:57:48 +0000 (14:57 -0700)
It makes sense to disable this code these if editing is not needed.
However, this is also necessary to correctly display emoji sequences
in right-to-left direction.  For that reason, don't auto-disable it.

src/hb-config.hh
src/hb-ot-shape.cc
src/hb-unicode.cc

index 6a95501..adf2b33 100644 (file)
@@ -58,7 +58,6 @@
 #define HB_NO_BITMAP
 #define HB_NO_CFF
 #define HB_NO_COLOR
-#define HB_NO_EMOJI
 #define HB_NO_FACE_COLLECT_UNICODES
 #define HB_NO_GETENV
 #define HB_NO_HINTING
index 7ae0925..c8bda2a 100644 (file)
@@ -479,7 +479,7 @@ hb_set_unicode_props (hb_buffer_t *buffer)
     {
        _hb_glyph_info_set_continuation (&info[i]);
     }
-#ifndef HB_NO_EMOJI
+#ifndef HB_NO_EMOJI_SEQUENCES
     else if (unlikely (_hb_glyph_info_is_zwj (&info[i])))
     {
       _hb_glyph_info_set_continuation (&info[i]);
index be87759..ed4fb77 100644 (file)
@@ -572,7 +572,7 @@ _hb_modified_combining_class[256] =
 /*
  * Emoji
  */
-#ifndef HB_NO_EMOJI
+#ifndef HB_NO_EMOJI_SEQUENCES
 
 #include "hb-unicode-emoji-table.hh"