From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Alfred M. Szmidt" Newsgroups: gmane.emacs.devel Subject: Re: rmail-default-file vs. (deleted) rmail-default-rmail-file Date: Thu, 09 Jul 2009 03:06:35 -0400 Message-ID: References: Reply-To: ams@gnu.org NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1247125681 27926 80.91.229.12 (9 Jul 2009 07:48:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 9 Jul 2009 07:48:01 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 09 09:47:54 2009 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 1MOoMB-0001gg-F5 for ged-emacs-devel@m.gmane.org; Thu, 09 Jul 2009 09:47:51 +0200 Original-Received: from localhost ([127.0.0.1]:47397 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MOoMA-00024X-Uk for ged-emacs-devel@m.gmane.org; Thu, 09 Jul 2009 03:47:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MOoLh-0001fr-Bd for emacs-devel@gnu.org; Thu, 09 Jul 2009 03:47:21 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MOoLb-0001bU-HV for emacs-devel@gnu.org; Thu, 09 Jul 2009 03:47:19 -0400 Original-Received: from [199.232.76.173] (port=57030 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MOoLa-0001bJ-TI for emacs-devel@gnu.org; Thu, 09 Jul 2009 03:47:14 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:34810) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MOoLa-00068D-HX for emacs-devel@gnu.org; Thu, 09 Jul 2009 03:47:14 -0400 Original-Received: from ams by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MOniF-0000SU-Mf; Thu, 09 Jul 2009 03:06:35 -0400 In-reply-to: (message from Glenn Morris on Thu, 09 Jul 2009 01:45:12 -0400) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) 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:112231 Archived-At: Can we change the default value of rmail-output-file to ~/XMAIL? Since that was the default (`o' was bound to rmail-output-to-rmail-file and used rmail-default-rmail-file). 2009-07-09 Alfred M. Szmidt * mail/rmail.el (rmail-default-file): Changed value to "~/XMAIL". diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index b348495..fad084e 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -618,7 +618,7 @@ Element N specifies the summary line for message N+1.") (defvar rmail-last-regexp nil) (put 'rmail-last-regexp 'permanent-local t) -(defcustom rmail-default-file "~/xmail" +(defcustom rmail-default-file "~/XMAIL" "Default file name for \\[rmail-output]." :type 'file :group 'rmail-files)