Mercurial > emacs
diff src/xfaces.c @ 49864:a2add8cdc33a
(try_alternative_families): Try all scalable fonts if
Vscalable_fonts_allowed is not Qt.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Wed, 19 Feb 2003 06:14:55 +0000 |
| parents | 6d5c33f4dd05 |
| children | b4b6ede28a6f |
line wrap: on
line diff
--- a/src/xfaces.c Wed Feb 19 05:59:54 2003 +0000 +++ b/src/xfaces.c Wed Feb 19 06:14:55 2003 +0000 @@ -6320,8 +6320,8 @@ } } - /* Try scalable fonts before giving up. */ - if (nfonts == 0 && NILP (Vscalable_fonts_allowed)) + /* Try all scalable fonts before giving up. */ + if (nfonts == 0 && ! EQ (Vscalable_fonts_allowed, Qt)) { int count = SPECPDL_INDEX (); specbind (Qscalable_fonts_allowed, Qt);
