From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: rusty@grunt.berkeley.edu Newsgroups: gmane.emacs.help Subject: elisp dummy needs help Date: 01 Mar 2005 09:54:43 -0800 Organization: Computer Center, UC Berkeley Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1109699642 7397 80.91.229.2 (1 Mar 2005 17:54:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 1 Mar 2005 17:54:02 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 01 18:54:02 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D6BWU-0006vV-Ev for geh-help-gnu-emacs@m.gmane.org; Tue, 01 Mar 2005 18:51:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D6Bp5-0000gz-PK for geh-help-gnu-emacs@m.gmane.org; Tue, 01 Mar 2005 13:10:19 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsmi-eu.news.garr.it!NewsITBone-GARR!irazu.switch.ch!switch.ch!in2p3.fr!oleane.net!oleane!newsfeed.berkeley.edu!ucberkeley!agate.berkeley.edu!agate!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 22 Original-NNTP-Posting-Host: grunt.berkeley.edu Original-X-Trace: agate.berkeley.edu 1109699683 97078 169.229.240.85 (1 Mar 2005 17:54:43 GMT) Original-X-Complaints-To: usenet@agate.berkeley.edu Original-NNTP-Posting-Date: Tue, 1 Mar 2005 17:54:43 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Original-Xref: shelby.stanford.edu gnu.emacs.help:128915 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org X-MailScanner-To: geh-help-gnu-emacs@m.gmane.org Xref: main.gmane.org gmane.emacs.help:24458 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:24458 I've moved to a machine that has a new version of emacs. When reading email with rmail when I use the s (save) command it's always asking me for confirmation. On the other machine it didn't do this and I prefer that behaviour. I looked in the elisp files and found this. It looks like I can add something to my .emacs file and make it behave the way I like, with no confirmation. Could someone tell me what to add or point me to the right place in the docs that explain how to do it? I don't know elisp. Thanks. ;;;###autoload (defcustom rmail-confirm-expunge 'y-or-n-p "*Whether and how to ask for confirmation before expunging deleted messages." :type '(choice (const :tag "No confirmation" nil) (const :tag "Confirm with y-or-n-p" y-or-n-p) (const :tag "Confirm with yes-or-no-p" yes-or-no-p)) :version "21.1" :group 'rmail-files)