From: Richard M. Stallman Date: Fri, 16 Jun 1995 23:28:57 +0000 (+0000) Subject: (Fset_window_configuration): Use do_switch_frame directly. X-Git-Tag: emacs-19.34~3571 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a7c6fc365aeb1b52b581195860ffe0c5df1d0ec;p=emacs.git (Fset_window_configuration): Use do_switch_frame directly. --- diff --git a/src/window.c b/src/window.c index d932b6db4bd..09781e2497e 100644 --- a/src/window.c +++ b/src/window.c @@ -3086,7 +3086,8 @@ by `current-window-configuration' (which see).") when the frame's old selected window has been deleted. */ #ifdef MULTI_FRAME if (f != selected_frame && ! FRAME_TERMCAP_P (f)) - Fhandle_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), Qnil); + do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), + Qnil, 0); #endif #endif @@ -3112,7 +3113,7 @@ by `current-window-configuration' (which see).") Fselect_window above totally superfluous; it still sets f's selected window. */ if (FRAME_LIVE_P (XFRAME (data->selected_frame))) - Fhandle_switch_frame (data->selected_frame, Qnil); + do_switch_frame (data->selected_frame, Qnil, 0); #endif if (!NILP (new_current_buffer))