# HG changeset patch # User Dave Love # Date 973897013 0 # Node ID 1c1159327046a888c53ec90c6bcda6997a157f26 # Parent e2512753e160d12e21db471c2709ce87633b3fd5 (gnus-article-banner-alist) (gnus-emphasize-whitespace-regexp, gnus-ignored-mime-types) (gnus-article-date-lapsed-new-header) (gnus-article-mime-match-handle-function, gnus-mime-action-alist) (gnus-treat-strip-list-identifiers, gnus-treat-date-iso8601) (gnus-treat-strip-headers-in-body) (gnus-treat-capitalize-sentences, gnus-treat-play-sounds) (gnus-treat-translate): Add :version. (gnus-article-mime-part-function): Fix defcustom. diff -r e2512753e160 -r 1c1159327046 lisp/gnus/gnus-art.el --- a/lisp/gnus/gnus-art.el Fri Nov 10 22:56:10 2000 +0000 +++ b/lisp/gnus/gnus-art.el Fri Nov 10 22:56:53 2000 +0000 @@ -226,6 +226,7 @@ "Banner alist for stripping. For example, ((egroups . \"^[ \\t\\n]*-------------------+\\\\( eGroups Sponsor -+\\\\)?....\\n\\\\(.+\\n\\\\)+\"))" + :version "21.1" :type '(repeat (cons symbol regexp)) :group 'gnus-article-washing) @@ -270,6 +271,7 @@ Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\". The former avoids underlining of leading and trailing whitespace, and the latter avoids underlining any whitespace at all." + :version "21.1" :group 'gnus-article-emphasis :type 'regexp) @@ -615,11 +617,13 @@ (defcustom gnus-ignored-mime-types nil "List of MIME types that should be ignored by Gnus." + :version "21.1" :group 'gnus-article-mime :type '(repeat regexp)) (defcustom gnus-unbuttonized-mime-types '(".*/.*") "List of MIME types that should not be given buttons when rendered inline." + :version "21.1" :group 'gnus-article-mime :type '(repeat regexp)) @@ -631,13 +635,17 @@ :type 'function) (defcustom gnus-mime-multipart-functions nil - "An alist of MIME types to functions to display them.") + "An alist of MIME types to functions to display them." + :version "21.1" + :group 'gnus-article-mime + :type 'alist) (defcustom gnus-article-date-lapsed-new-header nil "Whether the X-Sent and Date headers can coexist. When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will either replace the old \"Date:\" header (if this variable is nil), or be added below it (otherwise)." + :version "21.1" :group 'gnus-article-headers :type 'boolean) @@ -649,6 +657,7 @@ undisplayed part is used. For a function, the first part which the function return `t' is used. For `nil', the first part is used." + :version "21.1" :group 'gnus-article-mime :type '(choice (item :tag "first" :value nil) @@ -667,6 +676,7 @@ ("internalize type" . gnus-mime-internalize-part) ("externalize type" . gnus-mime-externalize-part)) "An alist of actions that run on the MIME attachment." + :version "21.1" :group 'gnus-article-mime :type '(repeat (cons (string :tag "name") (function)))) @@ -782,6 +792,7 @@ "Strip list identifiers from `gnus-list-identifiers`. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-custom) @@ -855,6 +866,7 @@ "Display the date in the ISO8601 format. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-head-custom) @@ -870,6 +882,7 @@ "Strip the X-No-Archive header line from the beginning of the body. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-custom) @@ -940,6 +953,7 @@ "Capitalize sentence-starting words. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-custom) @@ -954,6 +968,7 @@ "Play sounds. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-custom) @@ -961,6 +976,7 @@ "Translate articles from one language to another. Valid values are nil, t, `head', `last', an integer or a predicate. See the manual for details." + :version "21.1" :group 'gnus-article-treat :type gnus-article-treat-custom)