changeset 3375:13ddc81f0b43

(count-windows): PROC argument of walk-windows takes an argument.
author Richard M. Stallman <rms@gnu.org>
date Tue, 01 Jun 1993 00:54:52 +0000
parents 8e39495c5be4
children 898d7a33c038
files lisp/window.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/window.el	Tue Jun 01 00:50:50 1993 +0000
+++ b/lisp/window.el	Tue Jun 01 00:54:52 1993 +0000
@@ -1,4 +1,4 @@
-;;; windows.el --- GNU Emacs window commands aside from those written in C.
+;;; window.el --- GNU Emacs window commands aside from those written in C.
 
 ;;; Copyright (C) 1985, 1989, 1992 Free Software Foundation, Inc.
 
@@ -27,7 +27,7 @@
 Optional arg NO-MINI non-nil means don't count the minibuffer
 even if it is active."
    (let ((count 0))
-     (walk-windows (function (lambda ()
+     (walk-windows (function (lambda (w)
 			       (setq count (+ count 1))))
 		   minibuf)
      count))