diff options
Diffstat (limited to 'src/macfont.m')
| -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) | |||
| 2373 | != (spacing >= FONT_SPACING_MONO))) | 2373 | != (spacing >= FONT_SPACING_MONO))) |
| 2374 | continue; | 2374 | continue; |
| 2375 | 2375 | ||
| 2376 | /* Don't use a color bitmap font unless its family is | 2376 | /* Don't use a color bitmap font until it is supported on |
| 2377 | explicitly specified. */ | 2377 | free platforms. */ |
| 2378 | if ((sym_traits & kCTFontTraitColorGlyphs) && NILP (family)) | 2378 | if (sym_traits & kCTFontTraitColorGlyphs) |
| 2379 | continue; | 2379 | continue; |
| 2380 | 2380 | ||
| 2381 | if (j > 0 | 2381 | if (j > 0 |