aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-07-13 00:11:09 +0000
committerLuc Teirlinck2004-07-13 00:11:09 +0000
commit01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7 (patch)
treea2f9cb64b5403d48b1f76a9ed59f40c03579368c
parent9ea306d1786e97efae7123d32cd59972956ab1d6 (diff)
downloademacs-01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7.tar.gz
emacs-01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7.zip
(with-selected-window): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el6
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5b661fd3b10..c72237eec36 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-07-12 Luc Teirlinck <teirllm@auburn.edu>
2
3 * subr.el (with-selected-window): Doc fix.
4
12004-07-11 Luc Teirlinck <teirllm@auburn.edu> 52004-07-11 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * subr.el (get-buffer-window-list): Doc fix. 7 * subr.el (get-buffer-window-list): Doc fix.
diff --git a/lisp/subr.el b/lisp/subr.el
index f2c643b6690..9dd1e415212 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1799,6 +1799,12 @@ See also `with-temp-buffer'."
1799 "Execute the forms in BODY with WINDOW as the selected window. 1799 "Execute the forms in BODY with WINDOW as the selected window.
1800The value returned is the value of the last form in BODY. 1800The value returned is the value of the last form in BODY.
1801This does not alter the buffer list ordering. 1801This does not alter the buffer list ordering.
1802This function saves and restores the selected window, as well as
1803the selected window in each frame. If the previously selected
1804window of some frame is no longer live at the end of BODY, that
1805frame's selected window is left alone. If the selected window is
1806no longer live, then whatever window is selected at the end of
1807BODY remains selected.
1802See also `with-temp-buffer'." 1808See also `with-temp-buffer'."
1803 (declare (indent 1) (debug t)) 1809 (declare (indent 1) (debug t))
1804 ;; Most of this code is a copy of save-selected-window. 1810 ;; Most of this code is a copy of save-selected-window.