From: yamaoka Date: Mon, 17 Nov 2003 09:20:27 +0000 (+0000) Subject: Synch to Gnus 200311170916. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=8cbb100c27834291432af5c1035273db9741ddf1;p=elisp%2Fgnus.git- Synch to Gnus 200311170916. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6cf27d1..432d393 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-11-17 Lars Magne Ingebrigtsen + + * html2text.el (html2text-remove-tags): Remove the tag in a + simpler way to avoid inflooping. + 2003-11-17 Simon Josefsson * imap.el (imap-gssapi-auth-p): Don't check capability (some diff --git a/lisp/html2text.el b/lisp/html2text.el index 4b89f8f..41fea4b 100644 --- a/lisp/html2text.el +++ b/lisp/html2text.el @@ -463,9 +463,7 @@ See the documentation for that variable." (dolist (tag tag-list) (html2text-buffer-head) (while (re-search-forward (format "\\(]*>\\)" tag) (point-max) t) - (let ((p1 (point))) - (search-backward "<") - (delete-region (point) p1))))) + (delete-region (match-beginning 0) (match-end 0))))) (defun html2text-format-tags () "See the variable \"html2text-format-tag-list\" for documentation"