aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-03-06 03:46:28 +0000
committerGlenn Morris2009-03-06 03:46:28 +0000
commitc8644de0d406a99a4a493a0b78a1f3df62d4cfda (patch)
tree67413c1b74a2874f867532ba441de6851809599c
parent2e538385c68740485d38a9f93a38352bbc23591e (diff)
downloademacs-c8644de0d406a99a4a493a0b78a1f3df62d4cfda.tar.gz
emacs-c8644de0d406a99a4a493a0b78a1f3df62d4cfda.zip
(rmail-mime-media-type-handlers-alist): Fix doc and custom type.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/rmailmm.el10
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b00c6f0fdc..f97bf7cb240 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-03-06 Glenn Morris <rgm@gnu.org>
2
3 * mail/rmailmm.el (rmail-mime-media-type-handlers-alist): Fix doc and
4 custom type.
5
12009-03-05 Tassilo Horn <tassilo@member.fsf.org> 62009-03-05 Tassilo Horn <tassilo@member.fsf.org>
2 7
3 * doc-view.el (doc-view-convert-current-doc): Save the current 8 * doc-view.el (doc-view-convert-current-doc): Save the current
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 @@
45;;; ("application/pgp-signature" rmail-mime-application/pgp-signature-handler) 45;;; ("application/pgp-signature" rmail-mime-application/pgp-signature-handler)
46 ("\\(image\\|audio\\|video\\|application\\)/.*" rmail-mime-bulk-handler)) 46 ("\\(image\\|audio\\|video\\|application\\)/.*" rmail-mime-bulk-handler))
47 "Functions to handle various content types. 47 "Functions to handle various content types.
48This is an alist with elements of the form (REGEXP FUNCTION). 48This is an alist with elements of the form (REGEXP FUNCTION ...).
49REGEXP is a regular expression matching a content-type, and 49The first item is a regular expression matching a content-type.
50FUNCTION is a handler function to run. It should return non-nil 50The remaining elements are handler functions to run, in order of
51if the job is done." 51decreasing preference. These are called until one returns non-nil."
52 :type '(alist :key-type regexp :value-type (group function)) 52 :type '(alist :key-type regexp :value-type (repeat function))
53 :version "23.1" 53 :version "23.1"
54 :group 'mime) 54 :group 'mime)
55 55