diff options
| author | Julien Danjou | 2011-01-23 11:21:04 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-01-23 11:21:04 +0000 |
| commit | 3f6804070085b85cc94b54d632a07f04f6bbf572 (patch) | |
| tree | e69a1133f18d5dfcdab7e847fe9524830cd6098d | |
| parent | 45eb2a5d4609e89fae1723979f26a56b5fba8fa1 (diff) | |
| download | emacs-3f6804070085b85cc94b54d632a07f04f6bbf572.tar.gz emacs-3f6804070085b85cc94b54d632a07f04f6bbf572.zip | |
mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to text/x-org.
| -rw-r--r-- | lisp/gnus/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/gnus/mm-decode.el | 4 | ||||
| -rw-r--r-- | lisp/gnus/mm-uu.el | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ecbe52efd6d..8bd8732ade4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2011-01-23 Julien Danjou <julien@danjou.info> | ||
| 2 | |||
| 3 | * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org. | ||
| 4 | |||
| 5 | * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to | ||
| 6 | text/x-org. | ||
| 7 | |||
| 1 | 2011-01-22 Lars Ingebrigtsen <larsi@gnus.org> | 8 | 2011-01-22 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 9 | ||
| 3 | * gnus-sum.el (gnus-summary-move-article): Protect against backends | 10 | * gnus-sum.el (gnus-summary-move-article): Protect against backends |
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index ea65dd6fc92..2ae9c596119 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el | |||
| @@ -241,7 +241,7 @@ before the external MIME handler is invoked." | |||
| 241 | ("application/x-sh" mm-display-shell-script-inline identity) | 241 | ("application/x-sh" mm-display-shell-script-inline identity) |
| 242 | ("text/x-sh" mm-display-shell-script-inline identity) | 242 | ("text/x-sh" mm-display-shell-script-inline identity) |
| 243 | ("text/dns" mm-display-dns-inline identity) | 243 | ("text/dns" mm-display-dns-inline identity) |
| 244 | ("text/org" mm-display-org-inline identity) | 244 | ("text/x-org" mm-display-org-inline identity) |
| 245 | ("text/html" | 245 | ("text/html" |
| 246 | mm-inline-text-html | 246 | mm-inline-text-html |
| 247 | (lambda (handle) | 247 | (lambda (handle) |
| @@ -318,7 +318,7 @@ when selecting a different article." | |||
| 318 | "application/pkcs7-mime" | 318 | "application/pkcs7-mime" |
| 319 | ;; Mutt still uses this even though it has already been withdrawn. | 319 | ;; Mutt still uses this even though it has already been withdrawn. |
| 320 | "application/pgp\\'" | 320 | "application/pgp\\'" |
| 321 | "text/org") | 321 | "text/x-org") |
| 322 | "A list of MIME types to be displayed automatically." | 322 | "A list of MIME types to be displayed automatically." |
| 323 | :type '(repeat regexp) | 323 | :type '(repeat regexp) |
| 324 | :group 'mime-display) | 324 | :group 'mime-display) |
diff --git a/lisp/gnus/mm-uu.el b/lisp/gnus/mm-uu.el index 69661225bd4..200fa1573d8 100644 --- a/lisp/gnus/mm-uu.el +++ b/lisp/gnus/mm-uu.el | |||
| @@ -393,7 +393,7 @@ apply the face `mm-uu-extract'." | |||
| 393 | 393 | ||
| 394 | (defun mm-uu-org-src-code-block-extract () | 394 | (defun mm-uu-org-src-code-block-extract () |
| 395 | (mm-make-handle (mm-uu-copy-to-buffer start-point end-point) | 395 | (mm-make-handle (mm-uu-copy-to-buffer start-point end-point) |
| 396 | '("text/org"))) | 396 | '("text/x-org"))) |
| 397 | 397 | ||
| 398 | (defvar gnus-newsgroup-name) | 398 | (defvar gnus-newsgroup-name) |
| 399 | 399 | ||