diff options
author | Kenichi Handa <handa@m17n.org> | 2008-05-15 01:01:05 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2008-05-15 01:01:05 +0000 |
commit | c45fdeecef78893f3cf22f5954c4656e9484177d (patch) | |
tree | cc803d4027630d0068ca825d73218f6d8f50c643 /src/xfaces.c | |
parent | 5f2d79e0539460080b61c752fc943fee880e3367 (diff) | |
download | emacs-c45fdeecef78893f3cf22f5954c4656e9484177d.tar.gz |
(Finternal_set_lisp_face_attribute): Be sure to make a
font-spec for QCfont value.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 902d30caad6..a7d24f0d61d 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -3303,8 +3303,7 @@ FRAME 0 means change the face on all frames, and change the default if (fontset >= 0) value = fontset_ascii (fontset); - else - value = font_spec_from_name (value); + value = font_spec_from_name (value); } else signal_error ("Invalid font or font-spec", value); |