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: Latest emacs master branch and message mode Date: Mon, 06 Sep 2010 21:02:26 +0200 Message-ID: <4C853AC2.1010703@gmx.at> References: <4C851759.1030305@gmx.at> <87hbi2zpde.fsf@stupidchicken.com> 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 1283799761 9053 80.91.229.12 (6 Sep 2010 19:02:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 6 Sep 2010 19:02:41 +0000 (UTC) Cc: Lars Magne Ingebrigtsen , "Aneesh Kumar K.V" , Emacs development discussions To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 06 21:02: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 1Osgxj-0005oB-0P for ged-emacs-devel@m.gmane.org; Mon, 06 Sep 2010 21:02:39 +0200 Original-Received: from localhost ([127.0.0.1]:43461 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Osgxi-0008Od-KH for ged-emacs-devel@m.gmane.org; Mon, 06 Sep 2010 15:02:38 -0400 Original-Received: from [140.186.70.92] (port=51925 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Osgxb-0008OY-I9 for emacs-devel@gnu.org; Mon, 06 Sep 2010 15:02:33 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Osgxa-0001gh-D5 for emacs-devel@gnu.org; Mon, 06 Sep 2010 15:02:31 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.23]:44529 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OsgxZ-0001gS-VH for emacs-devel@gnu.org; Mon, 06 Sep 2010 15:02:30 -0400 Original-Received: (qmail invoked by alias); 06 Sep 2010 19:02:28 -0000 Original-Received: from 62-47-35-126.adsl.highway.telekom.at (EHLO [62.47.35.126]) [62.47.35.126] by mail.gmx.net (mp043) with SMTP; 06 Sep 2010 21:02:28 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX18Sjp9Dc6QSSt477JS4ULvK9vQk9wN0o+6fBwqzeF KvI8oU31NCW9We User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <87hbi2zpde.fsf@stupidchicken.com> X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.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:129718 Archived-At: >> you can try to customize `same-window-buffer-names' (which includes >> *mail* here so I'm a bit surprised that this doesn't work for you) > > This is because Lars recently changed message.el so that the buffer is > initially named *unsent mail*. I was unaware of that change. > We can fix this by adding a line > > ;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*unsent mail*")) > > to sendmail.el. I wonder, though, what other code this change will > break. Please do that. I'm currently rewriting `display-buffer' in order to get rid of these for good. The call would then have to be coded like (pop-to-buffer "*unsent mail*" 'same-window) martin