aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-15 23:06:57 +0000
committerRichard M. Stallman1995-03-15 23:06:57 +0000
commitce27e1b0b3a2a54d577652416a368f871faece3d (patch)
tree8bf8251fe2b22e6ce026cd0797b0780bc8c3ae94
parente7e7be7c5c1793b994b9171ce334b268d3cc2df9 (diff)
downloademacs-ce27e1b0b3a2a54d577652416a368f871faece3d.tar.gz
emacs-ce27e1b0b3a2a54d577652416a368f871faece3d.zip
(balance-windows): Ignore minibuffer window when browsing the `levels'.
-rw-r--r--lisp/window.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el
index eafded0572b..a0fcb130ff9 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -65,7 +65,8 @@ even if it is active."
65 count))) 65 count)))
66 (setq newsizes 66 (setq newsizes
67 (cons (cons w (* size (- newbot newtop))) 67 (cons (cons w (* size (- newbot newtop)))
68 newsizes)))))) 68 newsizes)))))
69 'nomini)
69 (walk-windows (function (lambda (w) 70 (walk-windows (function (lambda (w)
70 (select-window w) 71 (select-window w)
71 (let ((newsize (cdr (assq w newsizes)))) 72 (let ((newsize (cdr (assq w newsizes))))