From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Please review: Small fix for window.c Date: Thu, 09 Mar 2006 12:14:08 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1141924506 12357 80.91.229.2 (9 Mar 2006 17:15:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Mar 2006 17:15:06 +0000 (UTC) Cc: emacs-devel@gnu.org, storm@cua.dk Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 09 18:15:05 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 1FHOik-0005yQ-FZ for ged-emacs-devel@m.gmane.org; Thu, 09 Mar 2006 18:14:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FHOij-00070S-KC for ged-emacs-devel@m.gmane.org; Thu, 09 Mar 2006 12:14:37 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FHOiI-00061k-3M for emacs-devel@gnu.org; Thu, 09 Mar 2006 12:14:10 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FHOiH-0005wR-4W for emacs-devel@gnu.org; Thu, 09 Mar 2006 12:14:09 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FHOiG-0005uz-Le for emacs-devel@gnu.org; Thu, 09 Mar 2006 12:14:08 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FHOlN-0002PK-E3 for emacs-devel@gnu.org; Thu, 09 Mar 2006 12:17:21 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FHOiG-0001ap-5D; Thu, 09 Mar 2006 12:14:08 -0500 Original-To: Stefan Monnier In-reply-to: (message from Stefan Monnier on Wed, 08 Mar 2006 11:11:49 -0500) 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:51412 Archived-At: A softly dedicated window is a window that's been created specifically to display a particular buffer, but whose allegiance to this buffer may not be eternal. More specifically if the user decides to do switch-to-buffer, no error will be signalled and instead the dedication flag will simply be set to nil. This way, when the buffer gets deleted the window also gets deleted but only if the user hasn't used that window for some other purpose in the mean time. It sounds like a good idea.