From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.devel Subject: Re: emacs server and new frames Date: Mon, 05 Jun 2006 10:21:19 -0600 Organization: IHS Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1149524591 20874 80.91.229.2 (5 Jun 2006 16:23:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Jun 2006 16:23:11 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 05 18:23:11 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FnHr1-0002oO-VZ for ged-emacs-devel@m.gmane.org; Mon, 05 Jun 2006 18:23:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FnHr1-0005yR-6s for ged-emacs-devel@m.gmane.org; Mon, 05 Jun 2006 12:22:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FnHqp-0005yM-JM for emacs-devel@gnu.org; Mon, 05 Jun 2006 12:22:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FnHqo-0005y4-J6 for emacs-devel@gnu.org; Mon, 05 Jun 2006 12:22:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FnHqo-0005y0-FD for emacs-devel@gnu.org; Mon, 05 Jun 2006 12:22:46 -0400 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FnHxz-0002hn-Kl for emacs-devel@gnu.org; Mon, 05 Jun 2006 12:30:11 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FnHqe-0002iQ-AC for emacs-devel@gnu.org; Mon, 05 Jun 2006 18:22:36 +0200 Original-Received: from 207.167.42.206 ([207.167.42.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 05 Jun 2006 18:22:36 +0200 Original-Received: from ihs_4664 by 207.167.42.206 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 05 Jun 2006 18:22:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 19 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 207.167.42.206 User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) In-Reply-To: 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:55714 Archived-At: Sam Steingold wrote: > GNU Emacs 22.0.50.4 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) > of 2006-06-05 on quant8 > > I want buffers created by the emacs server to show up in their own > frames, so I do > > (add-hook 'server-switch-hook 'new-frame) > (custom-set-variables '(server-window 'pop-to-buffer)) > > the result is that the server buffer is shown both in a new frame and a > new window in an existing frame. > neither *Help*, nor *info*, nor the source are helpful... You could try setting server-window to a function that doesn't do anything, like 'ignore or 'identity. -- Kevin