diff options
| author | Lars Magne Ingebrigtsen | 2010-10-31 22:49:28 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-10-31 22:49:28 +0000 |
| commit | a8336650b85d749a182afdddab3ff12a7954583c (patch) | |
| tree | 128e5eb8e795019bd5efdf11b8ab373b72dece79 | |
| parent | 0356de228e34df4e0e598c706fd632b4ac932e8c (diff) | |
| download | emacs-a8336650b85d749a182afdddab3ff12a7954583c.tar.gz emacs-a8336650b85d749a182afdddab3ff12a7954583c.zip | |
message.el (message-subject-trailing-was-query): Change default to t.
| -rw-r--r-- | lisp/gnus/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 0a1ca2bd107..0e86799f7fe 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-10-31 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2010-10-31 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * message.el (message-subject-trailing-was-query): Change default to t, | ||
| 4 | since I think that's what most people want. | ||
| 5 | |||
| 3 | * nnimap.el (nnimap-request-accept-article): Erase buffer before | 6 | * nnimap.el (nnimap-request-accept-article): Erase buffer before |
| 4 | appending for easier debugging. | 7 | appending for easier debugging. |
| 5 | (nnimap-wait-for-connection): Take a regexp. | 8 | (nnimap-wait-for-connection): Take a regexp. |
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." | |||
| 306 | 306 | ||
| 307 | ;;; Start of variables adopted from `message-utils.el'. | 307 | ;;; Start of variables adopted from `message-utils.el'. |
| 308 | 308 | ||
| 309 | (defcustom message-subject-trailing-was-query 'ask | 309 | (defcustom message-subject-trailing-was-query t |
| 310 | "*What to do with trailing \"(was: <old subject>)\" in subject lines. | 310 | "*What to do with trailing \"(was: <old subject>)\" in subject lines. |
| 311 | If nil, leave the subject unchanged. If it is the symbol `ask', query | 311 | If nil, leave the subject unchanged. If it is the symbol `ask', query |
| 312 | the user what do do. In this case, the subject is matched against | 312 | 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 | |||
| 314 | `message-subject-trailing-was-query' is t, always strip the trailing | 314 | `message-subject-trailing-was-query' is t, always strip the trailing |
| 315 | old subject. In this case, `message-subject-trailing-was-regexp' is | 315 | old subject. In this case, `message-subject-trailing-was-regexp' is |
| 316 | used." | 316 | used." |
| 317 | :version "22.1" | 317 | :version "24.1" |
| 318 | :type '(choice (const :tag "never" nil) | 318 | :type '(choice (const :tag "never" nil) |
| 319 | (const :tag "always strip" t) | 319 | (const :tag "always strip" t) |
| 320 | (const ask)) | 320 | (const ask)) |