diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-10-31 22:49:28 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-10-31 22:49:28 +0000 |
commit | a8336650b85d749a182afdddab3ff12a7954583c (patch) | |
tree | 128e5eb8e795019bd5efdf11b8ab373b72dece79 /lisp/gnus/message.el | |
parent | 0356de228e34df4e0e598c706fd632b4ac932e8c (diff) | |
download | emacs-a8336650b85d749a182afdddab3ff12a7954583c.tar.gz emacs-a8336650b85d749a182afdddab3ff12a7954583c.tar.bz2 emacs-a8336650b85d749a182afdddab3ff12a7954583c.zip |
message.el (message-subject-trailing-was-query): Change default to t.
Diffstat (limited to 'lisp/gnus/message.el')
-rw-r--r-- | lisp/gnus/message.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index bac6ef4fac0..48daea844bf 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -306,7 +306,7 @@ any confusion." ;;; Start of variables adopted from `message-utils.el'. -(defcustom message-subject-trailing-was-query 'ask +(defcustom message-subject-trailing-was-query t "*What to do with trailing \"(was: <old subject>)\" in subject lines. If nil, leave the subject unchanged. If it is the symbol `ask', query the user what do do. In this case, the subject is matched against @@ -314,7 +314,7 @@ the user what do do. In this case, the subject is matched against `message-subject-trailing-was-query' is t, always strip the trailing old subject. In this case, `message-subject-trailing-was-regexp' is used." - :version "22.1" + :version "24.1" :type '(choice (const :tag "never" nil) (const :tag "always strip" t) (const ask)) |