summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-03-18 23:58:51 +0000
committerKarl Heuer <kwzh@gnu.org>1996-03-18 23:58:51 +0000
commit22ece80732503e5a3f61e352bfcaa3018b1d6789 (patch)
treeeef60d9da8d75f34cc36fee6d06f6a4ab83f1aa9
parent52bbe7b67b094d46465bf52d727fa212932880c1 (diff)
downloademacs-22ece80732503e5a3f61e352bfcaa3018b1d6789.tar.gz
(count-windows): Doc fix.
-rw-r--r--lisp/window.el4
1 files changed, 2 insertions, 2 deletions
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))))