From 97d42150b4f0233e98f516e69f4978b2e6eebe59 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Wed, 14 Jan 2009 12:08:49 +0000 Subject: [PATCH] (x_set_font): Always store a font to the font parameter, never a fontset. (Bug#1562) --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.c b/src/frame.c index 7db5a1e1fcb..7074e14077e 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3391,7 +3391,7 @@ x_set_font (f, arg, oldval) font_object = font_open_by_name (f, SDATA (ascii_font)); if (NILP (font_object)) error ("Font `%s' is not defined", SDATA (arg)); - arg = fontset_name (fontset); + arg = AREF (font_object, FONT_NAME_INDEX); } else error ("The default fontset can't be used for a frame font"); -- 2.39.2