mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
(Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
This commit is contained in:
parent
1ee245eb30
commit
3d378fdf23
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user