From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Rename `mini-' options Date: Sat, 16 May 2009 04:22:24 +0200 Message-ID: References: <26694.128.165.0.81.1242438439.squirrel@webmail.lanl.gov> <002f01c9d5cb$9fd36b00$0200a8c0@us.oracle.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1242440583 14477 80.91.229.12 (16 May 2009 02:23:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 16 May 2009 02:23:03 +0000 (UTC) Cc: emacs-devel@gnu.org, Deniz Dogan To: Drew Adams Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 16 04:22:56 2009 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 1M59Y7-0003aI-Jp for ged-emacs-devel@m.gmane.org; Sat, 16 May 2009 04:22:55 +0200 Original-Received: from localhost ([127.0.0.1]:45607 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M59Y6-00058t-QG for ged-emacs-devel@m.gmane.org; Fri, 15 May 2009 22:22:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M59Y0-00057f-F1 for emacs-devel@gnu.org; Fri, 15 May 2009 22:22:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M59Xx-00056P-Uw for emacs-devel@gnu.org; Fri, 15 May 2009 22:22:46 -0400 Original-Received: from [199.232.76.173] (port=34563 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M59Xx-000566-KS for emacs-devel@gnu.org; Fri, 15 May 2009 22:22:45 -0400 Original-Received: from qw-out-1920.google.com ([74.125.92.147]:15942) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M59Xx-000106-8O for emacs-devel@gnu.org; Fri, 15 May 2009 22:22:45 -0400 Original-Received: by qw-out-1920.google.com with SMTP id 4so1568617qwk.24 for ; Fri, 15 May 2009 19:22:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=Lyy3N6wNpkEP97by7dxM+dB8o5CcaUequ96J/81YtMs=; b=THiK4pNVnZ8P4HW8TaKBvLnjou+77gngTQ105IqSzH1x3XCa+A/77uwVFnlxstlMVg 4G5vh70HPS2odXy121mG45Th8NDgzJZtTaoiEPu6XNV7OVV+LC094fk0GQwZDvNQ+ltm vOaySAV1iT6qyU8/J2holMgciHrxSY9YzGyNk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=EzVNHO9kfGGTeq/w+XR7lv4UNIxjNObEggv73Ks/hPWO1FRdgionFVRX9MEbA01rWd oz6XY/AemfdqoFT0SIqaoogcmI74q07w+xoFa9J4BF6F0OoDfZxUeIAgyPD/T2Yd5z/t fAEsxZXfB4PUo4nM+nxSxhbtAw68YBqXmYZlM= Original-Received: by 10.220.100.130 with SMTP id y2mr5820253vcn.45.1242440564153; Fri, 15 May 2009 19:22:44 -0700 (PDT) In-Reply-To: <002f01c9d5cb$9fd36b00$0200a8c0@us.oracle.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:110910 Archived-At: On Sat, May 16, 2009 at 04:11, Drew Adams wrote: > The minibuffer and the echo area share the same screen real > estate. But it's not a window - "window" means something specific in Emacs. Why not? -- Function: window-tree &optional frame This function returns the window tree for frame FRAME. If FRAME is omitted, the selected frame is used. The return value is a list of the form `(ROOT MINI)', where ROOT represents the window tree of the frame's root window, and MINI is the frame's minibuffer window. Or are you saying that "the frame's minibuffer window" does not mean that it is a window? ELISP> (window-tree) (# #) ELISP> (windowp (cadr (window-tree))) t Juanma