message.el (message-subject-trailing-was-regexp): Fix default value.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 9 Nov 2010 02:00:29 +0000 (02:00 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 9 Nov 2010 02:00:29 +0000 (02:00 +0000)
lisp/ChangeLog
lisp/message.el

index c956bff..86164da 100644 (file)
@@ -1,3 +1,7 @@
+2010-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-subject-trailing-was-regexp): Fix default value.
+
 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
index 9b5f63c..035ba1c 100644 (file)
@@ -341,14 +341,14 @@ It is okay to create some false positives here, as the user is asked."
   :type 'regexp)
 
 (defcustom message-subject-trailing-was-regexp
-  "[ \t]*\\((*[Ww][Aa][Ss]:[ \t]*.*)\\)"
+  "[ \t]*\\((*[Ww][Aa][Ss][ \t]*.*)\\)"
   "*Regexp matching \"(was: <old subject>)\" in the subject line.
 
 If `message-subject-trailing-was-query' is set to t, the subject is
 matched against `message-subject-trailing-was-regexp' in
 `message-strip-subject-trailing-was'.  You should use a regexp creating very
 few false positives here."
-  :version "22.1"
+  :version "24.1"
   :group 'message-various
   :link '(custom-manual "(message)Message Headers")
   :type 'regexp)