]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_create_frame): Don't fail to initialize `font'.
authorRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 16:59:16 +0000 (16:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 16:59:16 +0000 (16:59 +0000)
src/xfns.c

index 17e6a64f987896272d18c5d8eef7f6958f9713e6..553b32aa71646433ceb8a45b563827c52d61de4f 100644 (file)
@@ -3282,8 +3282,8 @@ This function is an internal primitive--use `make-frame' instead.")
   {
     Lisp_Object font;
 
-    if (! STRINGP (font))
-      font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", string);
+    font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", string);
+
     BLOCK_INPUT;
     /* First, try whatever font the caller has specified.  */
     if (STRINGP (font))