diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-03-05 09:13:01 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-03-05 09:13:01 -0800 |
commit | c38e0c974e11c5c273ef8f6adb58442f4e30f460 (patch) | |
tree | e58cce0ea0b3de5c4187c43810c641093d8e0419 /lisp/gnus/mm-decode.el | |
parent | 11f4d68f254fd7bb62d5148b78a0c9b1d49b97fe (diff) | |
download | emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.tar.gz emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.tar.bz2 emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.zip |
Prefer UTF-8 when the encoding shouldn't matter and changes are small.
Diffstat (limited to 'lisp/gnus/mm-decode.el')
-rw-r--r-- | lisp/gnus/mm-decode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index 812ee7396dd..04f325633ba 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el @@ -1803,7 +1803,7 @@ If RECURSIVE, search recursively." (replace-match (char-to-string char)))) ;; Remove "soft hyphens". (goto-char (point-min)) - (while (search-forward "" nil t) + (while (search-forward "Â" nil t) (replace-match "" t t)) (libxml-parse-html-region (point-min) (point-max)))) (unless (bobp) @@ -1825,7 +1825,7 @@ If RECURSIVE, search recursively." (provide 'mm-decode) ;; Local Variables: -;; coding: iso-8859-1 +;; coding: utf-8 ;; End: ;;; mm-decode.el ends here |