changeset 21555:0927f341e390

(x_set_font): Give 2nd arg nil to Fquery_fontset. (Fx_create_frame): Likewise.
author Kenichi Handa <handa@m17n.org>
date Wed, 15 Apr 1998 07:38:29 +0000
parents 90119d523093
children f239266d104c
files src/xfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfns.c	Wed Apr 15 07:15:01 1998 +0000
+++ b/src/xfns.c	Wed Apr 15 07:38:29 1998 +0000
@@ -1600,7 +1600,7 @@
 
   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 @@
     /* 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