From: Paul Eggert Date: Wed, 6 Mar 2019 19:04:57 +0000 (-0800) Subject: Fix typo in fix for Bug#33498 X-Git-Tag: emacs-27.0.90~3462^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=870a33328123f91c2b96fbdead8b7ebadc53b9c8;p=emacs.git 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. --- 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) 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; }