(rmail-mime-media-type-handlers-alist): Fix doc and custom type.
authorGlenn Morris <rgm@gnu.org>
Fri, 6 Mar 2009 03:46:28 +0000 (03:46 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 6 Mar 2009 03:46:28 +0000 (03:46 +0000)
lisp/ChangeLog
lisp/mail/rmailmm.el

index 1b00c6f..f97bf7c 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-06  Glenn Morris  <rgm@gnu.org>
+
+       * mail/rmailmm.el (rmail-mime-media-type-handlers-alist): Fix doc and
+       custom type.
+
 2009-03-05  Tassilo Horn  <tassilo@member.fsf.org>
 
        * doc-view.el (doc-view-convert-current-doc): Save the current
index f3c2c5b..93e9c34 100644 (file)
 ;;;   ("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)