aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fontset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c
index 402561db005..6ed1efff092 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -598,7 +598,8 @@ fontset_font_pattern (f, id, c)
598 fontset = FONTSET_FROM_ID (id); 598 fontset = FONTSET_FROM_ID (id);
599 xassert (!BASE_FONTSET_P (fontset)); 599 xassert (!BASE_FONTSET_P (fontset));
600 fontset = FONTSET_BASE (fontset); 600 fontset = FONTSET_BASE (fontset);
601 elt = FONTSET_REF (fontset, c); 601 if (! EQ (fontset, Vdefault_fontset))
602 elt = FONTSET_REF (fontset, c);
602 } 603 }
603 if (NILP (elt)) 604 if (NILP (elt))
604 { 605 {