1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(try_alternative_families): Try all scalable fonts if

Vscalable_fonts_allowed is not Qt.
This commit is contained in:
Kenichi Handa 2003-02-19 06:15:15 +00:00
parent 72ecb43c59
commit f9a45bb340
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-02-19 Kenichi Handa <handa@m17n.org>
* xfaces.c (try_alternative_families): Try all scalable fonts if
Vscalable_fonts_allowed is not Qt.
2003-02-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.

View File

@ -6320,8 +6320,8 @@ try_alternative_families (f, family, registry, fonts)
}
}
/* 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);