aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus
diff options
context:
space:
mode:
authorDave Love2000-11-10 22:56:53 +0000
committerDave Love2000-11-10 22:56:53 +0000
commitfc2c2db8e95d2beb4486eb8ca3b3cd065f25dd28 (patch)
tree1e43dbb5030c886933f0472cdacc8ac6a77b0cf1 /lisp/gnus
parent0e5f03c178a9cd0400c8ff5b0fd27e6bc7cc00a3 (diff)
downloademacs-fc2c2db8e95d2beb4486eb8ca3b3cd065f25dd28.tar.gz
emacs-fc2c2db8e95d2beb4486eb8ca3b3cd065f25dd28.zip
(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.
Diffstat (limited to 'lisp/gnus')
-rw-r--r--lisp/gnus/gnus-art.el18
1 files changed, 17 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index ea68ff266c7..272d01b8509 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -226,6 +226,7 @@ asynchronously. The compressed face will be piped to this command."
226 "Banner alist for stripping. 226 "Banner alist for stripping.
227For example, 227For example,
228 ((egroups . \"^[ \\t\\n]*-------------------+\\\\( eGroups Sponsor -+\\\\)?....\\n\\\\(.+\\n\\\\)+\"))" 228 ((egroups . \"^[ \\t\\n]*-------------------+\\\\( eGroups Sponsor -+\\\\)?....\\n\\\\(.+\\n\\\\)+\"))"
229 :version "21.1"
229 :type '(repeat (cons symbol regexp)) 230 :type '(repeat (cons symbol regexp))
230 :group 'gnus-article-washing) 231 :group 'gnus-article-washing)
231 232
@@ -270,6 +271,7 @@ is the face used for highlighting."
270Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\". 271Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\".
271The former avoids underlining of leading and trailing whitespace, 272The former avoids underlining of leading and trailing whitespace,
272and the latter avoids underlining any whitespace at all." 273and the latter avoids underlining any whitespace at all."
274 :version "21.1"
273 :group 'gnus-article-emphasis 275 :group 'gnus-article-emphasis
274 :type 'regexp) 276 :type 'regexp)
275 277
@@ -615,11 +617,13 @@ displayed by the first non-nil matching CONTENT face."
615 617
616(defcustom gnus-ignored-mime-types nil 618(defcustom gnus-ignored-mime-types nil
617 "List of MIME types that should be ignored by Gnus." 619 "List of MIME types that should be ignored by Gnus."
620 :version "21.1"
618 :group 'gnus-article-mime 621 :group 'gnus-article-mime
619 :type '(repeat regexp)) 622 :type '(repeat regexp))
620 623
621(defcustom gnus-unbuttonized-mime-types '(".*/.*") 624(defcustom gnus-unbuttonized-mime-types '(".*/.*")
622 "List of MIME types that should not be given buttons when rendered inline." 625 "List of MIME types that should not be given buttons when rendered inline."
626 :version "21.1"
623 :group 'gnus-article-mime 627 :group 'gnus-article-mime
624 :type '(repeat regexp)) 628 :type '(repeat regexp))
625 629
@@ -631,13 +635,17 @@ on parts -- for instance, adding Vcard info to a database."
631 :type 'function) 635 :type 'function)
632 636
633(defcustom gnus-mime-multipart-functions nil 637(defcustom gnus-mime-multipart-functions nil
634 "An alist of MIME types to functions to display them.") 638 "An alist of MIME types to functions to display them."
639 :version "21.1"
640 :group 'gnus-article-mime
641 :type 'alist)
635 642
636(defcustom gnus-article-date-lapsed-new-header nil 643(defcustom gnus-article-date-lapsed-new-header nil
637 "Whether the X-Sent and Date headers can coexist. 644 "Whether the X-Sent and Date headers can coexist.
638When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will 645When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will
639either replace the old \"Date:\" header (if this variable is nil), or 646either replace the old \"Date:\" header (if this variable is nil), or
640be added below it (otherwise)." 647be added below it (otherwise)."
648 :version "21.1"
641 :group 'gnus-article-headers 649 :group 'gnus-article-headers
642 :type 'boolean) 650 :type 'boolean)
643 651
@@ -649,6 +657,7 @@ part or alternative part is used. For `undisplayed', the first
649undisplayed part is used. For a function, the first part which 657undisplayed part is used. For a function, the first part which
650the function return `t' is used. For `nil', the first part is 658the function return `t' is used. For `nil', the first part is
651used." 659used."
660 :version "21.1"
652 :group 'gnus-article-mime 661 :group 'gnus-article-mime
653 :type '(choice 662 :type '(choice
654 (item :tag "first" :value nil) 663 (item :tag "first" :value nil)
@@ -667,6 +676,7 @@ used."
667 ("internalize type" . gnus-mime-internalize-part) 676 ("internalize type" . gnus-mime-internalize-part)
668 ("externalize type" . gnus-mime-externalize-part)) 677 ("externalize type" . gnus-mime-externalize-part))
669 "An alist of actions that run on the MIME attachment." 678 "An alist of actions that run on the MIME attachment."
679 :version "21.1"
670 :group 'gnus-article-mime 680 :group 'gnus-article-mime
671 :type '(repeat (cons (string :tag "name") 681 :type '(repeat (cons (string :tag "name")
672 (function)))) 682 (function))))
@@ -782,6 +792,7 @@ See the manual for details."
782 "Strip list identifiers from `gnus-list-identifiers`. 792 "Strip list identifiers from `gnus-list-identifiers`.
783Valid values are nil, t, `head', `last', an integer or a predicate. 793Valid values are nil, t, `head', `last', an integer or a predicate.
784See the manual for details." 794See the manual for details."
795 :version "21.1"
785 :group 'gnus-article-treat 796 :group 'gnus-article-treat
786 :type gnus-article-treat-custom) 797 :type gnus-article-treat-custom)
787 798
@@ -855,6 +866,7 @@ See the manual for details."
855 "Display the date in the ISO8601 format. 866 "Display the date in the ISO8601 format.
856Valid values are nil, t, `head', `last', an integer or a predicate. 867Valid values are nil, t, `head', `last', an integer or a predicate.
857See the manual for details." 868See the manual for details."
869 :version "21.1"
858 :group 'gnus-article-treat 870 :group 'gnus-article-treat
859 :type gnus-article-treat-head-custom) 871 :type gnus-article-treat-head-custom)
860 872
@@ -870,6 +882,7 @@ See the manual for details."
870 "Strip the X-No-Archive header line from the beginning of the body. 882 "Strip the X-No-Archive header line from the beginning of the body.
871Valid values are nil, t, `head', `last', an integer or a predicate. 883Valid values are nil, t, `head', `last', an integer or a predicate.
872See the manual for details." 884See the manual for details."
885 :version "21.1"
873 :group 'gnus-article-treat 886 :group 'gnus-article-treat
874 :type gnus-article-treat-custom) 887 :type gnus-article-treat-custom)
875 888
@@ -940,6 +953,7 @@ See the manual for details."
940 "Capitalize sentence-starting words. 953 "Capitalize sentence-starting words.
941Valid values are nil, t, `head', `last', an integer or a predicate. 954Valid values are nil, t, `head', `last', an integer or a predicate.
942See the manual for details." 955See the manual for details."
956 :version "21.1"
943 :group 'gnus-article-treat 957 :group 'gnus-article-treat
944 :type gnus-article-treat-custom) 958 :type gnus-article-treat-custom)
945 959
@@ -954,6 +968,7 @@ See the manual for details."
954 "Play sounds. 968 "Play sounds.
955Valid values are nil, t, `head', `last', an integer or a predicate. 969Valid values are nil, t, `head', `last', an integer or a predicate.
956See the manual for details." 970See the manual for details."
971 :version "21.1"
957 :group 'gnus-article-treat 972 :group 'gnus-article-treat
958 :type gnus-article-treat-custom) 973 :type gnus-article-treat-custom)
959 974
@@ -961,6 +976,7 @@ See the manual for details."
961 "Translate articles from one language to another. 976 "Translate articles from one language to another.
962Valid values are nil, t, `head', `last', an integer or a predicate. 977Valid values are nil, t, `head', `last', an integer or a predicate.
963See the manual for details." 978See the manual for details."
979 :version "21.1"
964 :group 'gnus-article-treat 980 :group 'gnus-article-treat
965 :type gnus-article-treat-custom) 981 :type gnus-article-treat-custom)
966 982