diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2016-04-12 08:26:51 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2016-04-12 08:27:24 +0900 |
commit | 9344612d3cd164317170b6189ec43175757e4231 (patch) | |
tree | 45d490b38079c0db98853bfede214052806828fe /src | |
parent | c41ce1cf3db45111cf4034d4a5fe6d98ada07b97 (diff) | |
download | emacs-9344612d3cd164317170b6189ec43175757e4231.tar.gz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/macfont.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/macfont.m b/src/macfont.m index c9082a58415..04456283fa1 100644 --- a/src/macfont.m +++ b/src/macfont.m @@ -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 |