aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2019-03-06 11:04:57 -0800
committerPaul Eggert2019-03-06 11:05:19 -0800
commit870a33328123f91c2b96fbdead8b7ebadc53b9c8 (patch)
treef39b19a017a5aadb0ca7b74f55ccc52b13433131 /src
parent2260e48d2eeaa9ea2b9c17389cc25d00f85c414c (diff)
downloademacs-870a33328123f91c2b96fbdead8b7ebadc53b9c8.tar.gz
emacs-870a33328123f91c2b96fbdead8b7ebadc53b9c8.zip
Fix typo in fix for Bug#33498
* src/frame.c (delete_frame): Fix typo in previous patch, which caused GCC to complain about the use of an uninitialized variable.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 3d83dc0a0d8..1219569068e 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2236,7 +2236,7 @@ delete_frame (Lisp_Object frame, Lisp_Object force)
2236 for at least one other frame - so make it visible 2236 for at least one other frame - so make it visible
2237 and quit. */ 2237 and quit. */
2238 if (!FRAME_VISIBLE_P (f1) && !FRAME_ICONIFIED_P (f1)) 2238 if (!FRAME_VISIBLE_P (f1) && !FRAME_ICONIFIED_P (f1))
2239 Fmake_frame_visible (frame1); 2239 Fmake_frame_visible (minibuffer_child_frame);
2240 2240
2241 return Qnil; 2241 return Qnil;
2242 } 2242 }