diff options
author | Miles Bader <miles@gnu.org> | 2004-09-27 07:44:44 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2004-09-27 07:44:44 +0000 |
commit | f4dd4ae8939a407d9fa989ef0abb02f56151fe66 (patch) | |
tree | c57a8c484df2ad8b0cf2dc4696a728916b2947d1 /lisp/gnus/html2text.el | |
parent | 6c1178b5ee323394d4f18d83b64109f1bcae109e (diff) | |
download | emacs-f4dd4ae8939a407d9fa989ef0abb02f56151fe66.tar.gz emacs-f4dd4ae8939a407d9fa989ef0abb02f56151fe66.tar.bz2 emacs-f4dd4ae8939a407d9fa989ef0abb02f56151fe66.zip |
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-575
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-34
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-35
- miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-36
Update from CVS
Diffstat (limited to 'lisp/gnus/html2text.el')
-rw-r--r-- | lisp/gnus/html2text.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/gnus/html2text.el b/lisp/gnus/html2text.el index f2aefbef993..6f1ef3b0289 100644 --- a/lisp/gnus/html2text.el +++ b/lisp/gnus/html2text.el @@ -1,5 +1,5 @@ ;;; html2text.el --- a simple html to plain text converter -;; Copyright (C) 2002, 2003 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. ;; Author: Joakim Hove <hove@phys.ntnu.no> @@ -42,7 +42,8 @@ (defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr))) (defvar html2text-replace-list - '((" " . " ") (">" . ">") ("<" . "<") (""" . "\"")) + '((" " . " ") (">" . ">") ("<" . "<") (""" . "\"") + ("&" . "&") ("'" . "'")) "The map of entity to text. This is an alist were each element is a dotted pair consisting of an |