diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 12 | ||||
| -rw-r--r-- | src/window.c | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4ab24a42e41..0962308155e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2005-06-09 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * window.c (Fselect_window): Adapt call to Fselect_frame. | ||
| 4 | |||
| 5 | * lisp.h: Update EXFUN of Fselect_frame. | ||
| 6 | |||
| 7 | * keyboard.c (command_loop_1): Adapt call to Fselect_frame. | ||
| 8 | |||
| 9 | * frame.c (do_switch_frame, Fselect_frame): Delete unused arg no_enter. | ||
| 10 | (set-mouse-position, set-mouse-pixel-position, iconify-frame): | ||
| 11 | Adapt to above change. | ||
| 12 | |||
| 1 | 2005-06-10 Juanma Barranquero <lekktu@gmail.com> | 13 | 2005-06-10 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 14 | ||
| 3 | * fns.c (Fmemq, Fmaphash): Doc fixes. | 15 | * 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. */) | |||
| 3234 | so that FRAME_FOCUS_FRAME is moved appropriately as we | 3234 | so that FRAME_FOCUS_FRAME is moved appropriately as we |
| 3235 | move around in the state where a minibuffer in a separate | 3235 | move around in the state where a minibuffer in a separate |
| 3236 | frame is active. */ | 3236 | frame is active. */ |
| 3237 | Fselect_frame (WINDOW_FRAME (w), Qnil); | 3237 | Fselect_frame (WINDOW_FRAME (w)); |
| 3238 | } | 3238 | } |
| 3239 | else | 3239 | else |
| 3240 | sf->selected_window = window; | 3240 | sf->selected_window = window; |