1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

(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.
This commit is contained in:
Kenichi Handa 1999-01-30 01:46:35 +00:00
parent e6b0b77374
commit 715a159be2

View file

@ -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);
}