From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: Annoying resizing of Rmail windows Date: Sun, 10 Jul 2011 14:48:24 +0200 Message-ID: <4E199F98.6020008@gmx.at> References: <4E197D2F.90607@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1310302134 20083 80.91.229.12 (10 Jul 2011 12:48:54 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 10 Jul 2011 12:48:54 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 10 14:48:49 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QftRI-00082f-Mm for ged-emacs-devel@m.gmane.org; Sun, 10 Jul 2011 14:48:48 +0200 Original-Received: from localhost ([::1]:34092 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QftRI-0001OF-0W for ged-emacs-devel@m.gmane.org; Sun, 10 Jul 2011 08:48:48 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:40096) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QftR3-0001O8-Lw for emacs-devel@gnu.org; Sun, 10 Jul 2011 08:48:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QftR1-0005xB-T6 for emacs-devel@gnu.org; Sun, 10 Jul 2011 08:48:33 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:48796) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QftR1-0005wv-Fz for emacs-devel@gnu.org; Sun, 10 Jul 2011 08:48:31 -0400 Original-Received: (qmail invoked by alias); 10 Jul 2011 12:48:28 -0000 Original-Received: from 62-47-34-39.adsl.highway.telekom.at (EHLO [62.47.34.39]) [62.47.34.39] by mail.gmx.net (mp060) with SMTP; 10 Jul 2011 14:48:28 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1+EayxjK5GEnx7ijXpHbW0w6VaeYCr8tZD4gfq0UC UuwL8HFrnoiUmW User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.165.64.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:141902 Archived-At: > 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