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: Whole frame windows Date: Sat, 09 Aug 2008 14:45:08 +0200 Message-ID: <489D9154.8020202@gmx.at> References: <18588.57577.10349.904991@kahikatea.snap.net.nz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1218286059 12488 80.91.229.12 (9 Aug 2008 12:47:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 9 Aug 2008 12:47:39 +0000 (UTC) Cc: emacs-devel@gnu.org To: Nick Roberts Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Aug 09 14:48:30 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KRnrx-0007rq-1X for ged-emacs-devel@m.gmane.org; Sat, 09 Aug 2008 14:48:29 +0200 Original-Received: from localhost ([127.0.0.1]:46710 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KRnr1-0005W7-4Z for ged-emacs-devel@m.gmane.org; Sat, 09 Aug 2008 08:47:31 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KRnqw-0005Us-2P for emacs-devel@gnu.org; Sat, 09 Aug 2008 08:47:26 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KRnqs-0005RG-Os for emacs-devel@gnu.org; Sat, 09 Aug 2008 08:47:24 -0400 Original-Received: from [199.232.76.173] (port=58416 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KRnqs-0005R9-Ly for emacs-devel@gnu.org; Sat, 09 Aug 2008 08:47:22 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]:39065) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1KRnqs-0002zP-GA for emacs-devel@gnu.org; Sat, 09 Aug 2008 08:47:22 -0400 Original-Received: (qmail invoked by alias); 09 Aug 2008 12:47:18 -0000 Original-Received: from 62-47-34-6.adsl.highway.telekom.at (EHLO [62.47.34.6]) [62.47.34.6] by mail.gmx.net (mp007) with SMTP; 09 Aug 2008 14:47:18 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX18Dj65wLWwD678KvTZV5kZIVLAwY6r/YIIuc3OE9j er9dzugo6USoiV User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) In-Reply-To: <18588.57577.10349.904991@kahikatea.snap.net.nz> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.74 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:102229 Archived-At: > I know there's a feature freeze, but how about something like below to > expand a window to the whole frame and back? It's handy for many window > configurations like gdb-ui where the stack trace, for example, doesn't > always fit in the space available. Eclipse has a feature like this, when > you double click on the window tab. > > Seems pretty harmless to me and any release must be a long way away. IIUC this (defvar last-window-configuration nil "If `non-nil', the window configuration to which `toggle-window' restores.") is global. With multiple frames, the effect of `toggle-window' in a frame B for a window configuration of frame A might be unexpected. martin