summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fontset.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 78738b194c5..95000060b06 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-07 Kenichi Handa <handa@m17n.org>
+
+ * fontset.c (fontset_ref_via_base): Fix previous change.
+
2004-01-07 Kim F. Storm <storm@cua.dk>
* process.c (read_process_output): Only activate adaptive
diff --git a/src/fontset.c b/src/fontset.c
index b199f53df17..402561db005 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -305,7 +305,7 @@ fontset_ref_via_base (fontset, c)
elt = FONTSET_REF (FONTSET_BASE (fontset), *c);
if (NILP (elt))
elt = lookup_overriding_fontspec (FONTSET_FRAME (fontset), *c);
- if (NILP (elt) && ! EQ (FONTSET_BASE (fontset), Vdefault_fontset))
+ if (NILP (elt))
elt = FONTSET_REF (Vdefault_fontset, *c);
if (NILP (elt))
return Qnil;