(message-subject-trailing-was-query): Change default to t.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Sun, 31 Oct 2010 22:36:51 +0000 (23:36 +0100)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Sun, 31 Oct 2010 22:36:51 +0000 (23:36 +0100)
Since I think that's what most people want.

lisp/ChangeLog
lisp/message.el

index 71a4a3d..11d74e0 100644 (file)
@@ -1,5 +1,8 @@
 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * message.el (message-subject-trailing-was-query): Change default to t,
+       since I think that's what most people want.
+
        * nnimap.el (nnimap-request-accept-article): Erase buffer before
        appending for easier debugging.
        (nnimap-wait-for-connection): Take a regexp.
index b91b7a7..7160910 100644 (file)
@@ -310,7 +310,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
@@ -318,7 +318,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))