changeset 18947:386d68191907

(Fx_create_frame): Don't fail to initialize `font'.
author Richard M. Stallman <rms@gnu.org>
date Thu, 24 Jul 1997 16:59:16 +0000
parents 84b78d90cd45
children faab6e4baa7d
files src/xfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfns.c	Thu Jul 24 16:58:05 1997 +0000
+++ b/src/xfns.c	Thu Jul 24 16:59:16 1997 +0000
@@ -3282,8 +3282,8 @@
   {
     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))