aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-08-15 12:19:29 +0000
committerKenichi Handa2003-08-15 12:19:29 +0000
commit6aa1813f2656d141bc0f24b9808ee10b935c7b41 (patch)
tree2bb53a75da982ff93d413f3afa3cda9ea8362a6f /src
parent5d5512955245382282168ce3aba1ff3fbd3a5d99 (diff)
downloademacs-6aa1813f2656d141bc0f24b9808ee10b935c7b41.tar.gz
emacs-6aa1813f2656d141bc0f24b9808ee10b935c7b41.zip
(try_font_list): Call try_alternative_families to try any family
with the given registry.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 229797fc1ad..d0a3238d5aa 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -6439,7 +6439,7 @@ try_font_list (f, attrs, family, registry, fonts, prefer_face_family)
6439 6439
6440 /* Try any family with the given registry. */ 6440 /* Try any family with the given registry. */
6441 if (nfonts == 0) 6441 if (nfonts == 0)
6442 nfonts = font_list (f, Qnil, Qnil, registry, fonts); 6442 nfonts = try_alternative_families (f, Qnil, registry, fonts);
6443 6443
6444 return nfonts; 6444 return nfonts;
6445} 6445}