Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jd/0413dbceb19080f03854cef09f6861ab to your computer and use it in GitHub Desktop.
Save jd/0413dbceb19080f03854cef09f6861ab to your computer and use it in GitHub Desktop.
Revert commit 9344612d3cd164317170b6189ec43175757e4231 of Emacs
--- emacs/src/macfont.m.orig 2017-06-20 11:18:58.000000000 +0200
+++ emacs/src/macfont.m 2017-06-20 11:19:26.000000000 +0200
@@ -2373,9 +2373,9 @@
!= (spacing >= FONT_SPACING_MONO)))
continue;
- /* Don't use a color bitmap font until it is supported on
- free platforms. */
- if (sym_traits & kCTFontTraitColorGlyphs)
+ /* Don't use a color bitmap font unless its family is
+ explicitly specified. */
+ if ((sym_traits & kCTFontTraitColorGlyphs) && NILP (family))
continue;
if (j > 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment