From 35e7c6bc9147b97464fc4bd236c98709cc11ebcb Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 20 Jun 2006 01:17:23 +0000 Subject: [PATCH] (x_set_font) [USE_FONT_BACKEND]: Fix argument to font_open_by_name. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.c b/src/frame.c index 739b29c897e..0eaab69e961 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3092,7 +3092,7 @@ x_set_font (f, arg, oldval) { Lisp_Object ascii_font = fontset_ascii (fontset); - font_object = font_open_by_name (f, SDATA (arg)); + font_object = font_open_by_name (f, SDATA (ascii_font)); } } else -- 2.39.5