From mboxrd@z Thu Jan 1 00:00:00 1970 From: martin rudalics Subject: bug#9179: 24.0.50; Org-agenda window splitting does not use full frame when fraction set to 1.0 Date: Thu, 13 Oct 2011 12:40:16 +0200 Message-ID: <4E96C010.6060001__40614.8584945642$1318502523$gmane$org@gmx.at> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54458) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REIjO-00081n-BC for emacs-orgmode@gnu.org; Thu, 13 Oct 2011 06:41:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1REIjG-0007Vd-Pv for emacs-orgmode@gnu.org; Thu, 13 Oct 2011 06:41:42 -0400 In-Reply-To: Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-Message-ID: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: 9179@debbugs.gnu.org > 1. M-: (setq org-agenda-window-frame-fractions '(1.0 . 1.0)) RET > 2. M-x org-agenda a > > Expected results: The *Org Agenda* buffer occupies the entire frame > Actual results: The *Org Agenda* buffer occupies the entire frame EXCEPT > for a five line window at the top of the frame Due to fact that `fit-window-to-buffer' no more deletes other windows by side-effect. Hence for the '(1.0 . 1.0) case `org-fit-agenda-window' (or `org-fit-window-to-buffer') should call `delete-other-windows' or something the like. martin