From: Kenichi Handa Date: Sat, 30 Jan 1999 01:46:35 +0000 (+0000) Subject: (x_new_fontset): For ASCII font, don't use the font name X-Git-Tag: emacs-20.4~726 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=715a159be226dec8f65e86f50cd0780462debabd;p=emacs.git (x_new_fontset): For ASCII font, don't use the font name returned by x_new_font (the resolved one) but use the font name set in the fontset specification. --- diff --git a/src/xterm.c b/src/xterm.c index 95d6d05dcb8..361a0d1159e 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5432,7 +5432,7 @@ x_new_fontset (f, fontsetname) /* Since x_new_font doesn't update any fontset information, do it now. */ f->output_data.x->fontset = fontset; FS_LOAD_FONT (f, FRAME_X_FONT_TABLE (f), - CHARSET_ASCII, XSTRING (result)->data, fontset); + CHARSET_ASCII, fontsetp->fontname[CHARSET_ASCII], fontset); return build_string (fontsetname); }