]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_set_font): Give 2nd arg nil to Fquery_fontset.
authorKenichi Handa <handa@m17n.org>
Wed, 15 Apr 1998 07:38:29 +0000 (07:38 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 15 Apr 1998 07:38:29 +0000 (07:38 +0000)
(Fx_create_frame): Likewise.

src/xfns.c

index 520a7022a8b079f3c0dd35a90a107489932ec34e..68a0e631048fe63ec12af53cf456a3427314b220 100644 (file)
@@ -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