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: The window-pub branch Date: Tue, 23 Nov 2010 18:18:40 +0100 Message-ID: <4CEBF770.6080309@gmx.at> References: <4CE56872.6050502@gmx.de> <4CE6A9C3.5060400@gmx.de> <4CE792B7.7090406@gmx.at> <4CE7DEAB.8030401@gmx.de> <4CE80D77.10801@gmx.at> <4CE83A6B.6090904@gmx.de> <4CE8EB28.3060607@gmx.at> <4CE91FED.9060705@gmx.de> <4CE95C04.1090905@gmx.at> <4CEA3A75.50100@gmx.at> <4CEA514F.2030901@gmx.de> <4CEA53A5.9080009@gmx.at> <4CEA575E.5020607@gmx.de> <4CEA78DB.6010107@gmx.at> <4CEAA8C5.6080503@gmx.at> <4CEB703A.4070309@gmx.at> <4CEBDE5B.1070904@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 1290532788 28191 80.91.229.12 (23 Nov 2010 17:19:48 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 23 Nov 2010 17:19:48 +0000 (UTC) Cc: grischka , emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 23 18:19:36 2010 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.69) (envelope-from ) id 1PKwWl-0005mp-CA for ged-emacs-devel@m.gmane.org; Tue, 23 Nov 2010 18:19:35 +0100 Original-Received: from localhost ([127.0.0.1]:58766 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PKwWk-0005aF-PI for ged-emacs-devel@m.gmane.org; Tue, 23 Nov 2010 12:19:34 -0500 Original-Received: from [140.186.70.92] (port=49027 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PKwW9-0005Uw-MM for emacs-devel@gnu.org; Tue, 23 Nov 2010 12:19:30 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PKwVb-00058K-Nt for emacs-devel@gnu.org; Tue, 23 Nov 2010 12:18:57 -0500 Original-Received: from mailout-de.gmx.net ([213.165.64.23]:42976 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PKwVb-00057s-Au for emacs-devel@gnu.org; Tue, 23 Nov 2010 12:18:23 -0500 Original-Received: (qmail invoked by alias); 23 Nov 2010 17:18:21 -0000 Original-Received: from 62-47-54-105.adsl.highway.telekom.at (EHLO [62.47.54.105]) [62.47.54.105] by mail.gmx.net (mp041) with SMTP; 23 Nov 2010 18:18:21 +0100 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1/rM0lMoFjrmxUezaEdnyHQkDImPQa3CHtw+SHUev fjLxTosznbXX2B User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: GNU/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:133065 Archived-At: > Hmm... here I finally realize maybe I'm talking about something > completely different. I was thinking of special-display-buffer-names > rather than display-buffer-names. `display-buffer-names' is supposed to generalize `special-display-buffer-names'. > I.e. I was thinking of a setting like > > (setq special-display-buffer-names > '((ediff (same-frame . t)))) Would that be in .emacs? > Which would make the (same-frame . t) apply to all display-buffer calls > that specify `ediff-a' or `ediff-b' or `ediff-ancestor', ... Adding '(("^ediff.*") (same-frame)) to `display-buffer-regexps' should handle that. martin