]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in fix for Bug#33498
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Mar 2019 19:04:57 +0000 (11:04 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Mar 2019 19:05:19 +0000 (11:05 -0800)
* src/frame.c (delete_frame): Fix typo in previous patch,
which caused GCC to complain about the use of an uninitialized
variable.

src/frame.c

index 3d83dc0a0d8b0fcdb36a93c398b44fb3f2b5f89b..1219569068efb122064983949c865f47ff247c89 100644 (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;
                }