]> git.eshelyaron.com Git - emacs.git/commitdiff
Make get-buffer-window-list take MINIBUF arg.
authorSimon Marshall <simon@gnu.org>
Wed, 28 Feb 1996 09:22:11 +0000 (09:22 +0000)
committerSimon Marshall <simon@gnu.org>
Wed, 28 Feb 1996 09:22:11 +0000 (09:22 +0000)
lisp/subr.el

index 71566b2250d77518e2b4531e820b24a52265e46b..f5087fc68511ebc2f4d7b84f23b4b986c7cce28f 100644 (file)
@@ -698,14 +698,14 @@ On those systems, it is automatically local in every buffer.
 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 frame)
+(defun get-buffer-window-list (buffer &optional minibuf frame)
   "Return windows currently displaying BUFFER, or nil if none.
-See `get-buffer-window' for the meaning of FRAME."
+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)
                              (if (eq (window-buffer window) buffer)
                                  (setq windows (cons window windows)))))
-                 nil frame)
+                 minibuf frame)
     windows))
 
 (defun ignore (&rest ignore)