From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.help Subject: Re: Changing the current buffer on a minibuffer-only frame Date: Fri, 15 Oct 2010 08:35:08 +0200 Message-ID: <4CB7F61C.3030104@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 1287124550 7237 80.91.229.12 (15 Oct 2010 06:35:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 15 Oct 2010 06:35:50 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: fplemma@gmail.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Oct 15 08:35:48 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P6dtM-0005Fb-3D for geh-help-gnu-emacs@m.gmane.org; Fri, 15 Oct 2010 08:35:48 +0200 Original-Received: from localhost ([127.0.0.1]:40622 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P6dtL-0005Hx-Jq for geh-help-gnu-emacs@m.gmane.org; Fri, 15 Oct 2010 02:35:47 -0400 Original-Received: from [140.186.70.92] (port=37497 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P6dso-0005H5-4Z for help-gnu-emacs@gnu.org; Fri, 15 Oct 2010 02:35:14 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P6dsn-00077I-39 for help-gnu-emacs@gnu.org; Fri, 15 Oct 2010 02:35:13 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:54389 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1P6dsm-000779-Mx for help-gnu-emacs@gnu.org; Fri, 15 Oct 2010 02:35:13 -0400 Original-Received: (qmail invoked by alias); 15 Oct 2010 06:35:10 -0000 Original-Received: from 62-47-61-162.adsl.highway.telekom.at (EHLO [62.47.61.162]) [62.47.61.162] by mail.gmx.net (mp025) with SMTP; 15 Oct 2010 08:35:10 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX195alEIFTN5KvTz1yYQxCw9GG4opJ/yRopUxur4RN qQOwP7l0gHvIS9 User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) Original-References: AANLkTikRi6BZKaAyOE8ErSPYe1Y8t2jo-rQJzrLAH4-c@mail.gmail.com X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:75127 Archived-At: > A minibuffer-only frame, e.g. (make-initial-minibuffer-frame > nil), selects the displayed buffer on a caller window as the > default buffer on the newly-created frame. I am unaware of any > way to specify or change an arbitrary buffer for this frame. Is something like (let* ((frame (make-initial-minibuffer-frame nil)) (window (frame-root-window frame))) (set-window-buffer window "*Messages*")) what you want? martin