(mm-inline-media-tests): Add entry for x-diff.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 20:05:50 +0000 (20:05 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 20:05:50 +0000 (20:05 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mm-decode.el

index 717b3ba..c79753f 100644 (file)
@@ -1,5 +1,7 @@
 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
+
        * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
 
 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
index 1125492..a0b5542 100644 (file)
@@ -235,6 +235,9 @@ before the external MIME handler is invoked."
        ;; makes it possible to install another package which provides an
        ;; alternative implementation of diff-mode.  --Stef
        (fboundp 'diff-mode)))
+    ;; In case mime.types uses x-diff (as does Debian's mime-support-3.40).
+    ("text/x-diff" mm-display-patch-inline
+     (lambda (handle) (fboundp 'diff-mode)))
     ("application/emacs-lisp" mm-display-elisp-inline identity)
     ("application/x-emacs-lisp" mm-display-elisp-inline identity)
     ("text/dns" mm-display-dns-inline identity)
@@ -1233,10 +1236,9 @@ PROMPT overrides the default one used to ask user for a file name."
       (setq filename (gnus-map-function mm-file-name-rewrite-functions
                                        (file-name-nondirectory filename))))
     (setq file
-         (mm-with-multibyte
-          (read-file-name (or prompt "Save MIME part to: ")
-                          (or mm-default-directory default-directory)
-                          nil nil (or filename ""))))
+          (read-file-name (or prompt "Save MIME part to: ")
+                          (or mm-default-directory default-directory)
+                          nil nil (or filename "")))
     (setq mm-default-directory (file-name-directory file))
     (and (or (not (file-exists-p file))
             (yes-or-no-p (format "File %s already exists; overwrite? "