[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/window.el,v
From: |
Martin Rudalics |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/window.el,v |
Date: |
Sat, 14 Jun 2008 08:58:08 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Martin Rudalics <m061211> 08/06/14 08:58:08
Index: window.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/window.el,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -b -r1.141 -r1.142
--- window.el 10 Jun 2008 07:44:56 -0000 1.141
+++ window.el 14 Jun 2008 08:58:07 -0000 1.142
@@ -879,12 +879,13 @@
(defun window--even-window-heights (window)
"Even heights of window WINDOW and selected window.
Do this only if these windows are vertically adjacent to each
-other and `even-window-heights' is non-nil."
+other, `even-window-heights' is non-nil, and the selected window
+is higher than WINDOW."
(when (and even-window-heights
(not (eq window (selected-window)))
;; Don't resize minibuffer windows.
(not (window-minibuffer-p (selected-window)))
- (/= (window-height (selected-window)) (window-height window))
+ (> (window-height (selected-window)) (window-height window))
(eq (window-frame window) (window-frame (selected-window)))
(let ((sel-edges (window-edges (selected-window)))
(win-edges (window-edges window)))
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Stefan Monnier, 2008/06/05
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Martin Rudalics, 2008/06/06
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Stefan Monnier, 2008/06/07
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Andreas Schwab, 2008/06/08
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Martin Rudalics, 2008/06/08
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Martin Rudalics, 2008/06/10
- [Emacs-diffs] Changes to emacs/lisp/window.el,v,
Martin Rudalics <=
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Martin Rudalics, 2008/06/17
- [Emacs-diffs] Changes to emacs/lisp/window.el,v, Glenn Morris, 2008/06/30