From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: patch for optional inhibit of delete-other-windows(IDE feature) Date: Tue, 29 Apr 2008 16:31:57 -0400 Message-ID: References: <84D8FEFE8D23E94E9C2A6F0C58EE07E342A309@mucmail3.sdm.de> <4817231E.90307@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1209501145 17626 80.91.229.12 (29 Apr 2008 20:32:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 29 Apr 2008 20:32:25 +0000 (UTC) Cc: emacs-devel@gnu.org, rms@gnu.org, joakim@verona.se, klaus.berndl@sdm.de To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 29 22:32:59 2008 connect(): Connection refused 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 1JqwVS-0002iS-52 for ged-emacs-devel@m.gmane.org; Tue, 29 Apr 2008 22:32:54 +0200 Original-Received: from localhost ([127.0.0.1]:45738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JqwUj-0003Ei-4X for ged-emacs-devel@m.gmane.org; Tue, 29 Apr 2008 16:32:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JqwUe-0003DY-QX for emacs-devel@gnu.org; Tue, 29 Apr 2008 16:32:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JqwUc-00039f-8s for emacs-devel@gnu.org; Tue, 29 Apr 2008 16:32:04 -0400 Original-Received: from [199.232.76.173] (port=34912 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JqwUc-00039a-6g for emacs-devel@gnu.org; Tue, 29 Apr 2008 16:32:02 -0400 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182] helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JqwUY-0006OE-BG; Tue, 29 Apr 2008 16:31:58 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoQCAD0iF0jO+JghdGdsb2JhbACBU497ASeabQ X-IronPort-AV: E=Sophos;i="4.25,724,1199682000"; d="scan'208";a="19606004" Original-Received: from smtp.pppoe.ca (HELO smtp.teksavvy.com) ([65.39.196.238]) by ironport2-out.teksavvy.com with ESMTP; 29 Apr 2008 16:31:57 -0400 Original-Received: from pastel.home ([206.248.152.33]) by smtp.teksavvy.com (Internet Mail Server v1.0) with ESMTP id JYI79657; Tue, 29 Apr 2008 16:31:57 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 5256E81E8; Tue, 29 Apr 2008 16:31:57 -0400 (EDT) In-Reply-To: <4817231E.90307@gmx.at> (martin rudalics's message of "Tue, 29 Apr 2008 15:31:10 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:96165 Archived-At: > I rewrote `display-buffer' in Elisp and - provided Stefan agrees - plan > to commit this soon. Yes, that would be good, except I haven't had time to test it. > In this case you wouldn't have to "rewrite" any of > its code but simply copy it and patch the necessary parts. Well the "simply" part is misleading: it's a big piece of code and copy&modify suffers from the usual problem of keeping the code uptodate. But in any case you shouldn't need `advice' on display-buffer, you should be able to use display-buffer-function instead. Stefan