]> git.eshelyaron.com Git - emacs.git/commitdiff
message.el (message-subject-trailing-was-query): Change default to t.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 31 Oct 2010 22:49:28 +0000 (22:49 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 31 Oct 2010 22:49:28 +0000 (22:49 +0000)
lisp/gnus/ChangeLog
lisp/gnus/message.el

index 0a1ca2bd1070638e4e8daa9c6a2316e75ae1e3e5..0e86799f7fef7bcfd543de4d8fc97690817f30d7 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 bac6ef4fac0cea651e51f8115084564c87468c5c..48daea844bfdd22313c29493e107a7ae62890b83 100644 (file)
@@ -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))