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: Mon, 22 Nov 2010 18:30:24 +0100 Message-ID: <4CEAA8B0.3050502@gmx.at> References: <4CE56872.6050502@gmx.de> <4CE57519.7030403@gmx.at> <4CE59AC2.9030201@gmx.de> <4CE62E91.4030501@gmx.at> <4CE67DC5.7020603@gmx.de> <4CE68D34.1040308@gmx.at> <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> <4CEA97E2.2040800@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1290447166 13820 80.91.229.12 (22 Nov 2010 17:32:46 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 22 Nov 2010 17:32:46 +0000 (UTC) Cc: Stefan Monnier , emacs-devel@gnu.org To: grischka Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 22 18:32:39 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 1PKaFr-0007O8-9R for ged-emacs-devel@m.gmane.org; Mon, 22 Nov 2010 18:32:39 +0100 Original-Received: from localhost ([127.0.0.1]:40580 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PKaFq-0007HU-M4 for ged-emacs-devel@m.gmane.org; Mon, 22 Nov 2010 12:32:38 -0500 Original-Received: from [140.186.70.92] (port=42063 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PKaEd-0006oV-WC for emacs-devel@gnu.org; Mon, 22 Nov 2010 12:32:30 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PKaDr-0003mi-DZ for emacs-devel@gnu.org; Mon, 22 Nov 2010 12:31:21 -0500 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:46161 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PKaDq-0003m0-Ob for emacs-devel@gnu.org; Mon, 22 Nov 2010 12:30:35 -0500 Original-Received: (qmail invoked by alias); 22 Nov 2010 17:30:32 -0000 Original-Received: from 62-47-47-110.adsl.highway.telekom.at (EHLO [62.47.47.110]) [62.47.47.110] by mail.gmx.net (mp004) with SMTP; 22 Nov 2010 18:30:32 +0100 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX1+sJiha95Gsvhwo8bVFhwCW5kNpYORzFOBQw/yTPB Wi49JIwbwq+tPH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <4CEA97E2.2040800@gmx.de> 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:133021 Archived-At: > A symbol entry is more specific. More specific than a buffer name? > However I'd maybe just put names/regexps/symbols in the same > structure. Such as: > > (setq display-buffer-specifiers '( > ((a-symbol "*b-name*" (r . "^c-regexp.+")) > > ) > ... > )) > > That way the user can express preferences by the order naturally. I had that before with symbols 'name and 'regexp. It didn't look bad in the customization interface IIRC but seemed more annoying in the printed specification. OTOH it allows to give regexp based specifiers higher priority than name based ones. Maybe I'll give it another try. martin