Disable multicolor fonts on OS X since they are not supported on free systems
* src/macfont.m (macfont_list): Don't use color bitmap fonts.
This commit is contained in:
@@ -2373,9 +2373,9 @@ macfont_list (struct frame *f, Lisp_Object spec)
|
||||
!= (spacing >= FONT_SPACING_MONO)))
|
||||
continue;
|
||||
|
||||
/* Don't use a color bitmap font unless its family is
|
||||
explicitly specified. */
|
||||
if ((sym_traits & kCTFontTraitColorGlyphs) && NILP (family))
|
||||
/* Don't use a color bitmap font until it is supported on
|
||||
free platforms. */
|
||||
if (sym_traits & kCTFontTraitColorGlyphs)
|
||||
continue;
|
||||
|
||||
if (j > 0
|
||||
|
||||
Reference in New Issue
Block a user