Mercurial > emacs
changeset 53524:ccddf8ef9113
(fontset_ref_via_base): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 07 Jan 2004 00:21:53 +0000 |
parents | 6b4e0654b7ee |
children | 00ccb778950d |
files | src/fontset.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fontset.c Tue Jan 06 23:50:50 2004 +0000 +++ b/src/fontset.c Wed Jan 07 00:21:53 2004 +0000 @@ -305,7 +305,7 @@ 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;