From 244a4779af675703f35e38a45b7472ee3a0362db Mon Sep 17 00:00:00 2001 From: bg66 Date: Wed, 22 Nov 2006 11:27:06 +0000 Subject: [PATCH] * mixi.el (mixi-w3-retrieve): Use `decode-coding-string' instead of `mm-decode-coding-string'. --- ChangeLog | 5 +++++ mixi.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2b7c4e6..0fde3cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-11-22 OHASHI Akira + * mixi.el (mixi-w3-retrieve): Use `decode-coding-string' instead of + `mm-decode-coding-string'. + +2006-11-22 OHASHI Akira + * sb-mixi.el (shimbun-get-headers): Simplify. 2006-11-22 OHASHI Akira diff --git a/mixi.el b/mixi.el index f2d9e05..8240074 100644 --- a/mixi.el +++ b/mixi.el @@ -254,7 +254,7 @@ Increase this value when unexpected error frequently occurs." (unless (re-search-forward "HTTP/[0-9.]+ 200 OK" nil t) (error (mixi-message "Cannot retrieve"))) (search-forward "\n\n") - (setq ret (mm-decode-coding-string + (setq ret (decode-coding-string (buffer-substring-no-properties (point) (point-max)) mixi-coding-system)) (kill-buffer buffer) -- 1.7.10.4