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 18:31:21 +0200 Message-ID: <4C851759.1030305@gmx.at> References: 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 1283790699 3337 80.91.229.12 (6 Sep 2010 16:31:39 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 6 Sep 2010 16:31:39 +0000 (UTC) Cc: Emacs development discussions To: "Aneesh Kumar K.V" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 06 18:31:37 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 1OsebX-0000C9-UH for ged-emacs-devel@m.gmane.org; Mon, 06 Sep 2010 18:31:36 +0200 Original-Received: from localhost ([127.0.0.1]:57529 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OsebV-0007sl-4c for ged-emacs-devel@m.gmane.org; Mon, 06 Sep 2010 12:31:33 -0400 Original-Received: from [140.186.70.92] (port=41390 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OsebP-0007rY-3J for emacs-devel@gnu.org; Mon, 06 Sep 2010 12:31:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OsebO-0008N4-4L for emacs-devel@gnu.org; Mon, 06 Sep 2010 12:31:27 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:50591 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OsebN-0008MU-Kd for emacs-devel@gnu.org; Mon, 06 Sep 2010 12:31:26 -0400 Original-Received: (qmail invoked by alias); 06 Sep 2010 16:31:22 -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 (mp010) with SMTP; 06 Sep 2010 18:31:22 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX181yUU2gcI15eN9Fy0MTiF6wO8hNH9usejSYVjmV+ z6n0yj9DeJia0r 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:129711 Archived-At: > With the master branch currently a message compose and message reply > functionality is causing a vertical split of windows. Is there an option to > disable that. So that compose and reply feature doesn't cause a > vertical split and instead gives a full frame window ? A brute force approach is to set `pop-up-windows' to nil. If that badly affects your editing habits 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) or `same-window-regexps' (which already contains an entry for info buffers here so you should be able to create a new entry for *mail* buffers along these lines). If you want to have more precise control, you would have to tell me more about your editing habits first. martin