(one-window-p): New argument all-frames.
authorRichard M. Stallman <rms@gnu.org>
Sun, 20 Mar 1994 18:59:22 +0000 (18:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 20 Mar 1994 18:59:22 +0000 (18:59 +0000)
lisp/subr.el

index 42105a4..368bf55 100644 (file)
@@ -53,15 +53,21 @@ BODY should be a list of lisp expressions."
 \f
 ;;;; Window tree functions.
 
-(defun one-window-p (&optional nomini)
+(defun one-window-p (&optional nomini all-frames)
   "Returns non-nil if there is only one window.
 Optional arg NOMINI non-nil means don't count the minibuffer
-even if it is active."
+even if it is active.
+
+The optional arg ALL-FRAMES t means count windows on all frames.
+If it is `visible', count windows on all visible frames.
+ALL-FRAMES nil or omitted means count only the selected frame, 
+plus the minibuffer it uses (which may be on another frame).
+If ALL-FRAMES is neither nil nor t, count only the selected frame."
   (let ((base-window (selected-window)))
     (if (and nomini (eq base-window (minibuffer-window)))
        (setq base-window (next-window base-window)))
     (eq base-window
-       (next-window base-window (if nomini 'arg)))))
+       (next-window base-window (if nomini 'arg) all-frames))))
 
 (defun walk-windows (proc &optional minibuf all-frames)
   "Cycle through all visible windows, calling PROC for each one.