diff options
| author | Kenichi Handa | 2003-02-19 06:15:15 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-02-19 06:15:15 +0000 |
| commit | f9a45bb340f4e9d4c9718a4f328752f032beeaa2 (patch) | |
| tree | 4cf2282dd61d82dcb79d660934c83e3dbbe2d2bb /src/xfaces.c | |
| parent | 72ecb43c59321f8a95dac45e9a44e60e941140e6 (diff) | |
| download | emacs-f9a45bb340f4e9d4c9718a4f328752f032beeaa2.tar.gz emacs-f9a45bb340f4e9d4c9718a4f328752f032beeaa2.zip | |
(try_alternative_families): Try all scalable fonts if
Vscalable_fonts_allowed is not Qt.
Diffstat (limited to 'src/xfaces.c')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 7c668bc5787..a68a1eacad3 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -6320,8 +6320,8 @@ try_alternative_families (f, family, registry, fonts) | |||
| 6320 | } | 6320 | } |
| 6321 | } | 6321 | } |
| 6322 | 6322 | ||
| 6323 | /* Try scalable fonts before giving up. */ | 6323 | /* Try all scalable fonts before giving up. */ |
| 6324 | if (nfonts == 0 && NILP (Vscalable_fonts_allowed)) | 6324 | if (nfonts == 0 && ! EQ (Vscalable_fonts_allowed, Qt)) |
| 6325 | { | 6325 | { |
| 6326 | int count = SPECPDL_INDEX (); | 6326 | int count = SPECPDL_INDEX (); |
| 6327 | specbind (Qscalable_fonts_allowed, Qt); | 6327 | specbind (Qscalable_fonts_allowed, Qt); |