From: Karl Heuer Date: Tue, 23 Aug 1994 06:55:46 +0000 (+0000) Subject: (Fmake_frame_invisible, Ficonify_frame): Don't switch frames. X-Git-Tag: emacs-19.34~7267 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d378fdf2331250bacceb806c854468c3989fddc;p=emacs.git (Fmake_frame_invisible, Ficonify_frame): Don't switch frames. --- diff --git a/src/frame.c b/src/frame.c index 74ee07b75cf..35007249dd8 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1112,9 +1112,11 @@ but if the second optional argument FORCE is non-nil, you may do so.") if (NILP (force) && !other_visible_frames (XFRAME (frame))) error ("Attempt to make invisible the sole visible or iconified frame"); +#if 0 /* This isn't logically necessary, and it can do GC. */ /* Don't let the frame remain selected. */ if (XFRAME (frame) == selected_frame) Fhandle_switch_frame (next_frame (frame, Qt), Qnil); +#endif /* Don't allow minibuf_window to remain on a deleted frame. */ if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window)) @@ -1148,9 +1150,11 @@ If omitted, FRAME defaults to the currently selected frame.") CHECK_LIVE_FRAME (frame, 0); +#if 0 /* This isn't logically necessary, and it can do GC. */ /* Don't let the frame remain selected. */ if (XFRAME (frame) == selected_frame) Fhandle_switch_frame (next_frame (frame, Qt), Qnil); +#endif /* Don't allow minibuf_window to remain on a deleted frame. */ if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))