summaryrefslogtreecommitdiff
path: root/lisp/gnus/nnweb.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-03-12 19:20:33 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-03-12 19:20:33 +0000
commit944c87e0619c80ea22a795fd9df4755ed0b2f7b5 (patch)
tree3a3034b409dcbc7ddcac9222082fa2a528ed8814 /lisp/gnus/nnweb.el
parent2ec9cf150b73eae888975249c180ac5400ee67e7 (diff)
downloademacs-944c87e0619c80ea22a795fd9df4755ed0b2f7b5.tar.gz
emacs-944c87e0619c80ea22a795fd9df4755ed0b2f7b5.tar.bz2
emacs-944c87e0619c80ea22a795fd9df4755ed0b2f7b5.zip
(nnweb-insert-html): Remove use of nnheader-string-as-multibyte.
Diffstat (limited to 'lisp/gnus/nnweb.el')
-rw-r--r--lisp/gnus/nnweb.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el
index 56a287ef5e7..3609c90a36d 100644
--- a/lisp/gnus/nnweb.el
+++ b/lisp/gnus/nnweb.el
@@ -544,7 +544,11 @@ Valid types include `google', `dejanews', and `gmane'.")
(defun nnweb-insert-html (parse)
"Insert HTML based on a w3 parse tree."
(if (stringp parse)
- (insert (nnheader-string-as-multibyte parse))
+ ;; We used to call nnheader-string-as-multibyte here, but it cannot
+ ;; be right, so I removed it. If a bug shows up because of this change,
+ ;; please do not blindly revert the change, but help me find the real
+ ;; cause of the bug instead. --Stef
+ (insert parse)
(insert "<" (symbol-name (car parse)) " ")
(insert (mapconcat
(lambda (param)
@@ -610,5 +614,5 @@ Valid types include `google', `dejanews', and `gmane'.")
(provide 'nnweb)
-;;; arch-tag: f59307eb-c90f-479f-b7d2-dbd8bf51b697
+;; arch-tag: f59307eb-c90f-479f-b7d2-dbd8bf51b697
;;; nnweb.el ends here