From 49965a29984ace72e4f16b919980f2f51a422d01 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 15 Apr 1998 07:38:29 +0000 Subject: [PATCH] (x_set_font): Give 2nd arg nil to Fquery_fontset. (Fx_create_frame): Likewise. --- src/xfns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xfns.c b/src/xfns.c index 520a7022a8..68a0e63104 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1600,7 +1600,7 @@ x_set_font (f, arg, oldval) CHECK_STRING (arg, 1); - fontset_name = Fquery_fontset (arg); + fontset_name = Fquery_fontset (arg, Qnil); BLOCK_INPUT; result = (STRINGP (fontset_name) @@ -3291,7 +3291,7 @@ This function is an internal primitive--use `make-frame' instead.") /* First, try whatever font the caller has specified. */ if (STRINGP (font)) { - tem = Fquery_fontset (font); + tem = Fquery_fontset (font, Qnil); if (STRINGP (tem)) font = x_new_fontset (f, XSTRING (tem)->data); else -- 2.20.1