aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/window.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 19cb4935c7b..f8f0b82d3da 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-12-22 Martin Rudalics <rudalics@gmx.at>
2
3 * window.c (Fselect_window): Reword doc-string (Bug#13248).
4
12012-12-22 Eli Zaretskii <eliz@gnu.org> 52012-12-22 Eli Zaretskii <eliz@gnu.org>
2 6
3 * w32term.c (w32fullscreen_hook): New function. 7 * w32term.c (w32fullscreen_hook): New function.
diff --git a/src/window.c b/src/window.c
index ba633581b00..61a8ae00e8c 100644
--- a/src/window.c
+++ b/src/window.c
@@ -567,9 +567,11 @@ select_window_1 (Lisp_Object window, bool inhibit_point_swap)
567} 567}
568 568
569DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0, 569DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
570 doc: /* Select WINDOW. Most editing will apply to WINDOW's buffer. 570 doc: /* Select WINDOW which must be a live window.
571Also make WINDOW's buffer current and make WINDOW the frame's selected 571Also make WINDOW's frame the selected frame and WINDOW that frame's
572window. Return WINDOW. 572selected window. In addition, make WINDOW's buffer current and set that
573buffer's value of `point' to the value of WINDOW's `window-point'.
574Return WINDOW.
573 575
574Optional second arg NORECORD non-nil means do not put this buffer at the 576Optional second arg NORECORD non-nil means do not put this buffer at the
575front of the buffer list and do not make this window the most recently 577front of the buffer list and do not make this window the most recently