[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: elisp dummy needs help
From: |
rusty |
Subject: |
Re: elisp dummy needs help |
Date: |
01 Mar 2005 15:25:25 -0800 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 |
I figured it out; M-x customize lets me change it.
rusty@grunt.berkeley.edu writes:
> 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)