emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/html2text.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/html2text.el [emacs-unicode-2]
Date: Wed, 29 Sep 2004 03:45:20 -0400

Index: emacs/lisp/gnus/html2text.el
diff -c emacs/lisp/gnus/html2text.el:1.2.2.1 
emacs/lisp/gnus/html2text.el:1.2.2.2
*** emacs/lisp/gnus/html2text.el:1.2.2.1        Thu Sep  9 09:36:25 2004
--- emacs/lisp/gnus/html2text.el        Wed Sep 29 07:22:15 2004
***************
*** 1,5 ****
  ;;; html2text.el --- a simple html to plain text converter
! ;; Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  
  ;; Author: Joakim Hove <address@hidden>
  
--- 1,5 ----
  ;;; html2text.el --- a simple html to plain text converter
! ;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
  
  ;; Author: Joakim Hove <address@hidden>
  
***************
*** 42,48 ****
  (defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr)))
  
  (defvar html2text-replace-list
!   '(("&nbsp;" . " ") ("&gt;" . ">") ("&lt;" . "<") ("&quot;" . "\""))
    "The map of entity to text.
  
  This is an alist were each element is a dotted pair consisting of an
--- 42,49 ----
  (defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr)))
  
  (defvar html2text-replace-list
!   '(("&nbsp;" . " ") ("&gt;" . ">") ("&lt;" . "<") ("&quot;" . "\"")
!     ("&amp;" . "&") ("&apos;" . "'"))
    "The map of entity to text.
  
  This is an alist were each element is a dotted pair consisting of an




reply via email to

[Prev in Thread] Current Thread [Next in Thread]