aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatsumi Yamaoka <[email protected]>2010-09-01 04:44:25 +0000
committerKatsumi Yamaoka <[email protected]>2010-09-01 04:44:25 +0000
commitb0e3031077242c027006666925af1711d59c4cd3 (patch)
treea1d81aafcfbcc9683b37c4a16ffe2543f2808edb
parentcd110b2b0c2d2823d3572a62e1cd596c096f9a47 (diff)
gnus-html.el, message.el: Add custom version to new variables; gnus-sum.el: Bump custom version of gnus-auto-expirable-marks.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-html.el4
-rw-r--r--lisp/gnus/gnus-sum.el2
-rw-r--r--lisp/gnus/message.el1
4 files changed, 11 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 8a1e5db135..af7fa8460d 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,5 +1,10 @@
2010-09-01 Katsumi Yamaoka <[email protected]>
+ * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
+ (gnus-html-frame-width, gnus-blocked-images)
+ * message.el (message-prune-recipient-rules): Add custom version.
+ * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
+
* gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
functions.
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el
index f568d67334..0c3ad4b045 100644
--- a/lisp/gnus/gnus-html.el
+++ b/lisp/gnus/gnus-html.el
@@ -34,21 +34,25 @@
(defcustom gnus-html-cache-directory (nnheader-concat gnus-directory "html-cache/")
"Where Gnus will cache images it downloads from the web."
+ :version "24.1"
:group 'gnus-art
:type 'directory)
(defcustom gnus-html-cache-size 500000000
"The size of the Gnus image cache."
+ :version "24.1"
:group 'gnus-art
:type 'integer)
(defcustom gnus-html-frame-width 70
"What width to use when rendering HTML."
+ :version "24.1"
:group 'gnus-art
:type 'integer)
(defcustom gnus-blocked-images "."
"Images that have URLs matching this regexp will be blocked."
+ :version "24.1"
:group 'gnus-art
:type 'regexp)
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index cd0824f989..5aae825119 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -663,7 +663,7 @@ string with the suggested prefix."
gnus-low-score-mark gnus-ancient-mark gnus-read-mark
gnus-duplicate-mark)
"*The list of marks converted into expiration if a group is auto-expirable."
- :version "21.1"
+ :version "24.1"
:group 'gnus-summary
:type '(repeat character))
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 2e27daca90..7a1653acca 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -252,6 +252,7 @@ included. Organization and User-Agent are optional."
(defcustom message-prune-recipient-rules nil
"Rules for how to prune the list of recipients when doing wide replies.
This is a list of regexps and regexp matches."
+ :version "24.1"
:group 'message-mail
:group 'message-headers
:link '(custom-manual "(message)Wide Reply")