diff options
| -rw-r--r-- | lisp/gnus/gnus-art.el | 18 |
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. |
| 227 | For example, | 227 | For 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." | |||
| 270 | Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\". | 271 | Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\". |
| 271 | The former avoids underlining of leading and trailing whitespace, | 272 | The former avoids underlining of leading and trailing whitespace, |
| 272 | and the latter avoids underlining any whitespace at all." | 273 | and 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. |
| 638 | When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will | 645 | When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will |
| 639 | either replace the old \"Date:\" header (if this variable is nil), or | 646 | either replace the old \"Date:\" header (if this variable is nil), or |
| 640 | be added below it (otherwise)." | 647 | be 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 | |||
| 649 | undisplayed part is used. For a function, the first part which | 657 | undisplayed part is used. For a function, the first part which |
| 650 | the function return `t' is used. For `nil', the first part is | 658 | the function return `t' is used. For `nil', the first part is |
| 651 | used." | 659 | used." |
| 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`. |
| 783 | Valid values are nil, t, `head', `last', an integer or a predicate. | 793 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 784 | See the manual for details." | 794 | See 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. |
| 856 | Valid values are nil, t, `head', `last', an integer or a predicate. | 867 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 857 | See the manual for details." | 868 | See 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. |
| 871 | Valid values are nil, t, `head', `last', an integer or a predicate. | 883 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 872 | See the manual for details." | 884 | See 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. |
| 941 | Valid values are nil, t, `head', `last', an integer or a predicate. | 954 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 942 | See the manual for details." | 955 | See 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. |
| 955 | Valid values are nil, t, `head', `last', an integer or a predicate. | 969 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 956 | See the manual for details." | 970 | See 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. |
| 962 | Valid values are nil, t, `head', `last', an integer or a predicate. | 977 | Valid values are nil, t, `head', `last', an integer or a predicate. |
| 963 | See the manual for details." | 978 | See 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 | ||