aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-24 16:59:16 +0000
committerRichard M. Stallman1997-07-24 16:59:16 +0000
commit2ee3abaa317a2c964b685296b0ba44af4e8b30c1 (patch)
tree00b6979fe17087205fe8ab6592e8c58c8cbc1094 /src
parent215b45e94aca8732c7a32068c260cc16ada98d38 (diff)
downloademacs-2ee3abaa317a2c964b685296b0ba44af4e8b30c1.tar.gz
emacs-2ee3abaa317a2c964b685296b0ba44af4e8b30c1.zip
(Fx_create_frame): Don't fail to initialize `font'.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 17e6a64f987..553b32aa716 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3282,8 +3282,8 @@ This function is an internal primitive--use `make-frame' instead.")
3282 { 3282 {
3283 Lisp_Object font; 3283 Lisp_Object font;
3284 3284
3285 if (! STRINGP (font)) 3285 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", string);
3286 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", string); 3286
3287 BLOCK_INPUT; 3287 BLOCK_INPUT;
3288 /* First, try whatever font the caller has specified. */ 3288 /* First, try whatever font the caller has specified. */
3289 if (STRINGP (font)) 3289 if (STRINGP (font))