Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f9a45bb3
Commit
f9a45bb3
authored
Feb 19, 2003
by
Kenichi Handa
Browse files
(try_alternative_families): Try all scalable fonts if
Vscalable_fonts_allowed is not Qt.
parent
72ecb43c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/xfaces.c
src/xfaces.c
+2
-2
No files found.
src/ChangeLog
View file @
f9a45bb3
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.
...
...
src/xfaces.c
View file @
f9a45bb3
...
...
@@ -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);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment