diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-07-12 01:13:25 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-07-12 01:13:25 +0000 |
commit | 3ac08e99645c58c536b755a8f50495861f58157a (patch) | |
tree | 04775960d193ba77dd09472407b2613996a3fb0c /lisp | |
parent | da38045d0a9949d46814683391e094a3612b6b41 (diff) | |
download | emacs-3ac08e99645c58c536b755a8f50495861f58157a.tar.gz |
(get-buffer-window-list): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/subr.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68fe5246458..5b661fd3b10 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-07-11 Luc Teirlinck <teirllm@auburn.edu> + + * subr.el (get-buffer-window-list): Doc fix. + 2004-07-10 Luc Teirlinck <teirllm@auburn.edu> * files.el (switch-to-buffer-other-window): Doc fix. diff --git a/lisp/subr.el b/lisp/subr.el index cb825b3e8b3..f2c643b6690 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1600,7 +1600,8 @@ On other systems, this variable is normally always nil.") ;; This should probably be written in C (i.e., without using `walk-windows'). (defun get-buffer-window-list (buffer &optional minibuf frame) - "Return windows currently displaying BUFFER, or nil if none. + "Return list of all windows displaying BUFFER, or nil if none. +BUFFER can be a buffer or a buffer name. See `walk-windows' for the meaning of MINIBUF and FRAME." (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows) (walk-windows (function (lambda (window) |