diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2017-01-13 07:42:35 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2017-01-13 07:42:35 +0000 |
commit | 62e27ebd54336d30a90ae71e5bdcb910e954c061 (patch) | |
tree | f5216e3f715ff1c6c342ff1f557f7408d55a559c /lisp/gnus/mm-uu.el | |
parent | dd80ee695cac629792f5b230496a9f9ea2f600a5 (diff) | |
download | emacs-62e27ebd54336d30a90ae71e5bdcb910e954c061.tar.gz emacs-62e27ebd54336d30a90ae71e5bdcb910e954c061.tar.bz2 emacs-62e27ebd54336d30a90ae71e5bdcb910e954c061.zip |
Fix last change of dd80ee6 (was: mm-uu.el: Don't dissect patch part)
Diffstat (limited to 'lisp/gnus/mm-uu.el')
-rw-r--r-- | lisp/gnus/mm-uu.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/gnus/mm-uu.el b/lisp/gnus/mm-uu.el index 3455cc423d9..10cdeed3fbb 100644 --- a/lisp/gnus/mm-uu.el +++ b/lisp/gnus/mm-uu.el @@ -711,8 +711,7 @@ Assume text has been decoded if DECODED is non-nil." ;; Mutt still uses application/pgp even though ;; it has already been withdrawn. (string-match "\\`text/\\|\\`application/pgp\\'" type) - (not - (string-match "\\`text/x-\\(?:diff\\|patch\\)\\'" type)) + (not (string-match "/x-\\(?:diff\\|patch\\)\\'" type)) (equal (car (mm-handle-disposition handle)) "inline") (setq |