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/html2text.el | |
parent | 11f4d68f254fd7bb62d5148b78a0c9b1d49b97fe (diff) | |
download | emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.tar.gz |
Prefer UTF-8 when the encoding shouldn't matter and changes are small.
Diffstat (limited to 'lisp/gnus/html2text.el')
-rw-r--r-- | lisp/gnus/html2text.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/html2text.el b/lisp/gnus/html2text.el index 4e05f1abb40..68e75196c87 100644 --- a/lisp/gnus/html2text.el +++ b/lisp/gnus/html2text.el @@ -1,4 +1,4 @@ -;;; html2text.el --- a simple html to plain text converter +;;; html2text.el --- a simple html to plain text converter -*- coding: utf-8 -*- ;; Copyright (C) 2002-2013 Free Software Foundation, Inc. @@ -65,14 +65,14 @@ ("–" . "-") ("‰" . "%%") ("±" . "+-") - ("£" . "£") + ("£" . "£") (""" . "\"") ("»" . ">>") ("&rdquo" . "\"") ("®" . "(R)") ("›" . ")") ("’" . "'") - ("§" . "§") + ("§" . "§") ("¹" . "^1") ("²" . "^2") ("³" . "^3") |