]> code.delx.au - gnu-emacs/commitdiff
Reword doc and doc-string of select-window (Bug#13248).
authorMartin Rudalics <rudalics@gmx.at>
Sat, 22 Dec 2012 10:12:52 +0000 (11:12 +0100)
committerMartin Rudalics <rudalics@gmx.at>
Sat, 22 Dec 2012 10:12:52 +0000 (11:12 +0100)
* window.c (Fselect_window): Reword doc-string.
* windows.texi (Selecting Windows): Reword description of
select-window.

doc/lispref/ChangeLog
doc/lispref/windows.texi
src/ChangeLog
src/window.c

index 212e7c86e682a2bd46d387137b0bc7d595e92a11..09c70226d5d7d473c21092049f5eadea7f5a2779 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-22  Martin Rudalics  <rudalics@gmx.at>
+
+       * windows.texi (Selecting Windows): Reword description of
+       select-window (Bug#13248).
+
 2012-12-21  Chong Yidong  <cyd@gnu.org>
 
        * modes.texi (Auto Major Mode): Fix typo (Bug#13230).
index a3bbe192ad1145bd3e7ee56a750ee6e495a1e9bd..44d6af6eb5213186d15b3662b7142e1c5a3d8fbd 100644 (file)
@@ -1296,10 +1296,12 @@ windows.
 @cindex selecting a window
 
 @defun select-window window &optional norecord
-This function makes @var{window} the selected window, as well as the
-window selected within its frame (@pxref{Basic Windows}).  @var{window}
-must be a live window.  This function makes also @var{window}'s buffer
-current (@pxref{Buffers and Windows}).  The return value is
+This function makes @var{window} the selected window and the window
+selected within its frame (@pxref{Basic Windows}) and selects that
+frame.  @var{window} must be a live window.  This function also makes
+@var{window}'s buffer (@pxref{Buffers and Windows}) current and sets
+that buffer's value of @code{point} to the value of @code{window-point}
+(@pxref{Window Point}) in @var{window}.  The return value is
 @var{window}.
 
 By default, this function also moves @var{window}'s buffer to the front
index e1017f3d03747518b6e51da2dad50b31410214ed..e8d5449a99e0686d8d4ce4e9153003082efc272d 100644 (file)
@@ -1,3 +1,7 @@
+2012-12-22  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.c (Fselect_window): Reword doc-string (Bug#13248).
+
 2012-12-21  Eli Zaretskii  <eliz@gnu.org>
 
        * fileio.c (Finsert_file_contents): Doc fix.
index 4981b8cd7c07ad668df1d61fe8c7ae64ef45a7cc..95ad76d677424a04561c4d3e6d866387e7e6051f 100644 (file)
@@ -523,9 +523,11 @@ select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap)
 }
 
 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
-       doc: /* Select WINDOW.  Most editing will apply to WINDOW's buffer.
-Also make WINDOW's buffer current and make WINDOW the frame's selected
-window.  Return WINDOW.
+       doc: /* Select WINDOW which must be a live window.
+Also make WINDOW's frame the selected frame and WINDOW that frame's
+selected window.  In addition, make WINDOW's buffer current and set that
+buffer's value of `point' to the value of WINDOW's `window-point'.
+Return WINDOW.
 
 Optional second arg NORECORD non-nil means do not put this buffer at the
 front of the buffer list and do not make this window the most recently