1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

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.
This commit is contained in:
Paul Eggert 2019-03-06 11:04:57 -08:00
parent 2260e48d2e
commit 870a333281

View file

@ -2236,7 +2236,7 @@ delete_frame (Lisp_Object frame, Lisp_Object force)
for at least one other frame - so make it visible
and quit. */
if (!FRAME_VISIBLE_P (f1) && !FRAME_ICONIFIED_P (f1))
Fmake_frame_visible (frame1);
Fmake_frame_visible (minibuffer_child_frame);
return Qnil;
}