From: Karl Heuer Date: Mon, 18 Mar 1996 23:58:51 +0000 (+0000) Subject: (count-windows): Doc fix. X-Git-Tag: emacs-19.34~1024 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c6897d8e06531b769b9e0386c7008c1a46ac96d4;p=emacs.git (count-windows): Doc fix. --- diff --git a/lisp/window.el b/lisp/window.el index fcb5aab594d..bb22300c559 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -88,8 +88,8 @@ Anything else means restrict to WINDOW's frame." (defun count-windows (&optional minibuf) "Returns the number of visible windows. -Optional arg NO-MINI non-nil means don't count the minibuffer -even if it is active." +Optional arg MINIBUF non-nil means count the minibuffer +even if it is inactive." (let ((count 0)) (walk-windows (function (lambda (w) (setq count (+ count 1))))