emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Annoying resizing of Rmail windows


From: martin rudalics
Subject: Re: Annoying resizing of Rmail windows
Date: Sun, 10 Jul 2011 14:48:24 +0200
User-agent: Thunderbird 2.0.0.21 (Windows/20090302)

> And the change you made, viz.
>
>     ;; `even-window-heights'
>     (unless (and (boundp 'even-window-heights)
>   -                   (not even-window-heights))
>   +                   even-window-heights)
>      (setq specifiers
>            (cons (cons 'reuse-window-even-sizes t) specifiers)))
>
> seems to be backwards, i.e. the original code was correct.

You're right.  I reverted that change.

> Perhaps
> instead you should add `(reuse-window-even-sizes)', i.e. with an
> explicit nil cdr, if even-window-heights is nil?  Or am I missing
> something obvious?

No.  The problem is, as you told earlier, that there is a

 (reuse-window-even-sizes . t)

in your `display-buffer-alist' (I misread that the first time) which
overrides the setting derived from the `even-window-heights' setting.  I
don't know how it got there but you simply have to remove it (by default
`display-buffer-alist' is nil now).

martin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]