summaryrefslogtreecommitdiff
path: root/lisp/mail/rmailmm.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-03-06 03:46:28 +0000
committerGlenn Morris <rgm@gnu.org>2009-03-06 03:46:28 +0000
commitc8644de0d406a99a4a493a0b78a1f3df62d4cfda (patch)
tree67413c1b74a2874f867532ba441de6851809599c /lisp/mail/rmailmm.el
parent2e538385c68740485d38a9f93a38352bbc23591e (diff)
(rmail-mime-media-type-handlers-alist): Fix doc and custom type.
Diffstat (limited to 'lisp/mail/rmailmm.el')
-rw-r--r--lisp/mail/rmailmm.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mail/rmailmm.el b/lisp/mail/rmailmm.el
index f3c2c5b5053..93e9c3424bd 100644
--- a/lisp/mail/rmailmm.el
+++ b/lisp/mail/rmailmm.el
@@ -45,11 +45,11 @@
;;; ("application/pgp-signature" rmail-mime-application/pgp-signature-handler)
("\\(image\\|audio\\|video\\|application\\)/.*" rmail-mime-bulk-handler))
"Functions to handle various content types.
-This is an alist with elements of the form (REGEXP FUNCTION).
-REGEXP is a regular expression matching a content-type, and
-FUNCTION is a handler function to run. It should return non-nil
-if the job is done."
- :type '(alist :key-type regexp :value-type (group function))
+This is an alist with elements of the form (REGEXP FUNCTION ...).
+The first item is a regular expression matching a content-type.
+The remaining elements are handler functions to run, in order of
+decreasing preference. These are called until one returns non-nil."
+ :type '(alist :key-type regexp :value-type (repeat function))
:version "23.1"
:group 'mime)