diff options
| author | Luc Teirlinck | 2004-07-13 00:11:09 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-13 00:11:09 +0000 |
| commit | 01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7 (patch) | |
| tree | a2f9cb64b5403d48b1f76a9ed59f40c03579368c | |
| parent | 9ea306d1786e97efae7123d32cd59972956ab1d6 (diff) | |
| download | emacs-01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7.tar.gz emacs-01df0a6d3af666a4cd277d4ae5dacd95b58fa5e7.zip | |
(with-selected-window): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 6 |
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 @@ | |||
| 1 | 2004-07-12 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * subr.el (with-selected-window): Doc fix. | ||
| 4 | |||
| 1 | 2004-07-11 Luc Teirlinck <teirllm@auburn.edu> | 5 | 2004-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. |
| 1800 | The value returned is the value of the last form in BODY. | 1800 | The value returned is the value of the last form in BODY. |
| 1801 | This does not alter the buffer list ordering. | 1801 | This does not alter the buffer list ordering. |
| 1802 | This function saves and restores the selected window, as well as | ||
| 1803 | the selected window in each frame. If the previously selected | ||
| 1804 | window of some frame is no longer live at the end of BODY, that | ||
| 1805 | frame's selected window is left alone. If the selected window is | ||
| 1806 | no longer live, then whatever window is selected at the end of | ||
| 1807 | BODY remains selected. | ||
| 1802 | See also `with-temp-buffer'." | 1808 | See 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. |