aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2010-10-21 02:44:47 +0000
committerKatsumi Yamaoka2010-10-21 02:44:47 +0000
commitd99bf2d833f16643756d5c10697c8898d8d69b07 (patch)
tree85cb76a43e79a0a3bf8fd5535b91de60c2ddd9d8
parent08ffb131098cb044f501cceacdd11651f9b7621d (diff)
downloademacs-d99bf2d833f16643756d5c10697c8898d8d69b07.tar.gz
emacs-d99bf2d833f16643756d5c10697c8898d8d69b07.zip
gnus.el (gnus-message-archive-group): Quote value.
gnus.el (gnus-message-archive-group): Mark as changed.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus.el5
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 88a00bc6d43..fb173c4009b 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,12 +1,15 @@
12010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org> 12010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * gnus.el (gnus-message-archive-group): Quote value.
4 (gnus-message-archive-group): Mark as changed.
5
3 * shr.el (shr-add-font): Don't put the font properties on the newline 6 * shr.el (shr-add-font): Don't put the font properties on the newline
4 or the indentation. 7 or the indentation.
5 8
6 * message.el (message-fix-before-sending): Change options when sending 9 * message.el (message-fix-before-sending): Change options when sending
7 non-printable characters. 10 non-printable characters.
8 11
9 * gnus.el (gnus-update-message-archive-method): Change the default to 12 * gnus.el (gnus-message-archive-method): Change the default to
10 monthly outgoing groups. 13 monthly outgoing groups.
11 14
12 * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles 15 * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index f809d5c8ae0..bd78c6aef35 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -1356,12 +1356,12 @@ updated if the value of this variable is nil, even if you change the
1356value of `gnus-message-archive-method' afterward. If you want the 1356value of `gnus-message-archive-method' afterward. If you want the
1357saved \"archive\" method to be updated whenever you change the value of 1357saved \"archive\" method to be updated whenever you change the value of
1358`gnus-message-archive-method', set this variable to a non-nil value." 1358`gnus-message-archive-method', set this variable to a non-nil value."
1359 :version "24.1" 1359 :version "23.1"
1360 :group 'gnus-server 1360 :group 'gnus-server
1361 :group 'gnus-message 1361 :group 'gnus-message
1362 :type 'boolean) 1362 :type 'boolean)
1363 1363
1364(defcustom gnus-message-archive-group ((format-time-string "sent.%Y-%m")) 1364(defcustom gnus-message-archive-group '((format-time-string "sent.%Y-%m"))
1365 "*Name of the group in which to save the messages you've written. 1365 "*Name of the group in which to save the messages you've written.
1366This can either be a string; a list of strings; or an alist 1366This can either be a string; a list of strings; or an alist
1367of regexps/functions/forms to be evaluated to return a string (or a list 1367of regexps/functions/forms to be evaluated to return a string (or a list
@@ -1381,6 +1381,7 @@ unprefixed -- which implicitly means \"store on the archive server\".
1381However, you may wish to store the message on some other server. In 1381However, you may wish to store the message on some other server. In
1382that case, just return a fully prefixed name of the group -- 1382that case, just return a fully prefixed name of the group --
1383\"nnml+private:mail.misc\", for instance." 1383\"nnml+private:mail.misc\", for instance."
1384 :version "24.1"
1384 :group 'gnus-message 1385 :group 'gnus-message
1385 :type '(choice (const :tag "none" nil) 1386 :type '(choice (const :tag "none" nil)
1386 (const :tag "Weekly" ((format-time-string "sent.%Yw%U"))) 1387 (const :tag "Weekly" ((format-time-string "sent.%Yw%U")))