]> git.eshelyaron.com Git - emacs.git/commitdiff
(get-buffer-window-list): Doc fix.
authorLuc Teirlinck <teirllm@auburn.edu>
Mon, 12 Jul 2004 01:13:25 +0000 (01:13 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Mon, 12 Jul 2004 01:13:25 +0000 (01:13 +0000)
lisp/ChangeLog
lisp/subr.el

index 68fe5246458fee9f73cbc1d7e2502022090fbeb8..5b661fd3b10695d544936a8ba0fce7f83623e7b4 100644 (file)
@@ -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.
index cb825b3e8b33658f20258b7aa7a2f0bac1586a53..f2c643b669004b371dca5543acbc0ae76112422e 100644 (file)
@@ -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)