diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-07-09 02:13:07 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-07-09 02:13:07 +0000 |
commit | b50e51120687a7c82046e9b24b28f9576f8c273b (patch) | |
tree | c3e5ee15f76330b663d33c7b0d7da128c10de264 /lisp/gnus/mm-decode.el | |
parent | 31542918c320d00d8049341e3c78055664f3a847 (diff) | |
download | emacs-b50e51120687a7c82046e9b24b28f9576f8c273b.tar.gz emacs-b50e51120687a7c82046e9b24b28f9576f8c273b.tar.bz2 emacs-b50e51120687a7c82046e9b24b28f9576f8c273b.zip |
mm-decode.el (mm-shr): Allow overriding charset by mm-charset-override-alist
Diffstat (limited to 'lisp/gnus/mm-decode.el')
-rw-r--r-- | lisp/gnus/mm-decode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index d0401bc9de3..7982b745d66 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el @@ -1772,7 +1772,8 @@ If RECURSIVE, search recursively." (insert (prog1 (if (and charset (setq charset - (mm-charset-to-coding-system charset)) + (mm-charset-to-coding-system charset + nil t)) (not (eq charset 'ascii))) (mm-decode-coding-string (buffer-string) charset) (mm-string-as-multibyte (buffer-string))) |