diff options
| author | Glenn Morris | 2009-03-06 03:46:28 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-03-06 03:46:28 +0000 |
| commit | c8644de0d406a99a4a493a0b78a1f3df62d4cfda (patch) | |
| tree | 67413c1b74a2874f867532ba441de6851809599c | |
| parent | 2e538385c68740485d38a9f93a38352bbc23591e (diff) | |
| download | emacs-c8644de0d406a99a4a493a0b78a1f3df62d4cfda.tar.gz emacs-c8644de0d406a99a4a493a0b78a1f3df62d4cfda.zip | |
(rmail-mime-media-type-handlers-alist): Fix doc and custom type.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/rmailmm.el | 10 |
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 @@ | |||
| 1 | 2009-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 | |||
| 1 | 2009-03-05 Tassilo Horn <tassilo@member.fsf.org> | 6 | 2009-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. |
| 48 | This is an alist with elements of the form (REGEXP FUNCTION). | 48 | This is an alist with elements of the form (REGEXP FUNCTION ...). |
| 49 | REGEXP is a regular expression matching a content-type, and | 49 | The first item is a regular expression matching a content-type. |
| 50 | FUNCTION is a handler function to run. It should return non-nil | 50 | The remaining elements are handler functions to run, in order of |
| 51 | if the job is done." | 51 | decreasing 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 | ||