From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Org-mode version 5.13 Date: Wed, 24 Oct 2007 01:14:40 +0100 Message-ID: <87wstdnzbj.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IkSxO-00072b-Vq for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 19:14:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IkSxM-00072P-Vf for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 19:14:42 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IkSxM-00072M-L4 for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 19:14:40 -0400 Received: from mu-out-0910.google.com ([209.85.134.186]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IkSxL-000215-Ry for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 19:14:40 -0400 Received: by mu-out-0910.google.com with SMTP id g7so17892muf for ; Tue, 23 Oct 2007 16:14:37 -0700 (PDT) In-Reply-To: (Scott Jaderholm's message of "Tue, 23 Oct 2007 13:26:24 -0600") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= "Scott Jaderholm" writes: > - New variable `org-agenda-window-frame-fractions' to > customize the size limits of the agenda window in the case > that you display the agenda window by reorganizing the > frame. > > In org 5.12 when I do C-c a the Agenda Commands window that comes up > is only as tall as it needs to be. In 5.13 it is half the frame > height. I'm not sure exactly which change caused this. `org-agenda-window-setup' or `org-agenda-window-frame-fractions' don't change the way the Agenda Commands window is displayed. I guess Carsten wanted the default size of windows to be the same for the Agenda Commands window and for any agenda view. But I think the Agenda Commands window should be as small as possible since it's not likely to change very often. Here is a patch for this. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=org.el.patch diff -u /home/guerry/elisp/testing/org/org.el /home/guerry/elisp/testing/bzg/org.el --- /home/guerry/elisp/testing/org/org.el 2007-10-22 15:04:16.000000000 +0100 +++ /home/guerry/elisp/testing/bzg/org.el 2007-10-24 01:04:27.000000000 +0100 @@ -18339,9 +18339,7 @@ "Prefix key")))) prefixes)) (goto-char (point-min)) - (if (and (fboundp 'fit-window-to-buffer) - (not (pos-visible-in-window-p (point-max)))) - (fit-window-to-buffer)) + (if (fboundp 'fit-window-to-buffer) (fit-window-to-buffer)) (message "Press key for agenda command%s:" (if restrict-ok (if restriction Diff finished. Wed Oct 24 01:04:41 2007 --=-=-= -- Bastien --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--