From c869384d74ca1fc2c33b25eb28316b3a6415dcf8 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Fri, 10 Jun 2005 02:36:07 +0000 Subject: [PATCH] (Fselect_window): Adapt call to Fselect_frame. --- src/ChangeLog | 12 ++++++++++++ src/window.c | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 4ab24a42e41..0962308155e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,15 @@ +2005-06-09 Luc Teirlinck + + * window.c (Fselect_window): Adapt call to Fselect_frame. + + * lisp.h: Update EXFUN of Fselect_frame. + + * keyboard.c (command_loop_1): Adapt call to Fselect_frame. + + * frame.c (do_switch_frame, Fselect_frame): Delete unused arg no_enter. + (set-mouse-position, set-mouse-pixel-position, iconify-frame): + Adapt to above change. + 2005-06-10 Juanma Barranquero * fns.c (Fmemq, Fmaphash): Doc fixes. diff --git a/src/window.c b/src/window.c index 4839830b177..1f2af647677 100644 --- a/src/window.c +++ b/src/window.c @@ -3234,7 +3234,7 @@ selects the buffer of the selected window before each command. */) so that FRAME_FOCUS_FRAME is moved appropriately as we move around in the state where a minibuffer in a separate frame is active. */ - Fselect_frame (WINDOW_FRAME (w), Qnil); + Fselect_frame (WINDOW_FRAME (w)); } else sf->selected_window = window; -- 2.39.2