aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatsumi Yamaoka2010-08-31 00:23:25 +0000
committerKatsumi Yamaoka2010-08-31 00:23:25 +0000
commit379dde032cfa9e69c09b2a7c08c20c3fe02ed3c2 (patch)
tree33b0bc08f615242811c4e4b41f10535f77c86b49
parent5a2756c8cace5f30958ca9e1cb3f5421442fef5f (diff)
downloademacs-379dde032cfa9e69c09b2a7c08c20c3fe02ed3c2.tar.gz
emacs-379dde032cfa9e69c09b2a7c08c20c3fe02ed3c2.zip
Tell w3m that the input is UTF-8; This seems to fix problems with some German web feeds; by Lars Magne Ingebrigtsen <larsi@gnus.org>.
-rw-r--r--lisp/gnus/ChangeLog3
-rw-r--r--lisp/gnus/gnus-html.el2
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 0d3d0446c86..12c84e53ba5 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,5 +1,8 @@
12010-08-30 Lars Magne Ingebrigtsen <larsi@gnus.org> 12010-08-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * gnus-html.el (gnus-article-html): Tell w3m that the input is
4 UTF-8. This seems to fix problems with some German web feeds.
5
3 * gnus.el (gnus-group-startup-message): Put the xpm version of the logo 6 * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
4 at the top so that the proper colours are applied. 7 at the top so that the proper colours are applied.
5 8
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el
index cabfe345123..ba1420fb8ac 100644
--- a/lisp/gnus/gnus-html.el
+++ b/lisp/gnus/gnus-html.el
@@ -59,8 +59,10 @@
59 nil article-buffer nil 59 nil article-buffer nil
60 "-halfdump" 60 "-halfdump"
61 "-no-cookie" 61 "-no-cookie"
62 "-I" "UTF-8"
62 "-O" "UTF-8" 63 "-O" "UTF-8"
63 "-o" "ext_halfdump=1" 64 "-o" "ext_halfdump=1"
65 "-o" "pre_conv=1"
64 "-t" (format "%s" tab-width) 66 "-t" (format "%s" tab-width)
65 "-cols" (format "%s" gnus-html-frame-width) 67 "-cols" (format "%s" gnus-html-frame-width)
66 "-o" "display_image=off" 68 "-o" "display_image=off"