From 66309f759b7c77188bae7b032545632077f4b726 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 29 Nov 2006 12:19:25 +0000 Subject: [PATCH] (x_set_font): Fix the second arg to fs_query_fontset. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.c b/src/frame.c index eebfd8eeb13..18ed9e02c10 100644 --- a/src/frame.c +++ b/src/frame.c @@ -3112,7 +3112,7 @@ x_set_font (f, arg, oldval) In the last case, this function never fail. */ if (STRINGP (arg)) { - fontset = fs_query_fontset (arg, Qnil); + fontset = fs_query_fontset (arg, 0); if (fontset < 0) font_object = font_open_by_name (f, SDATA (arg)); else if (fontset > 0) -- 2.39.5