* mixi.el (mixi-w3-retrieve): Use `decode-coding-string' instead of
authorbg66 <bg66>
Wed, 22 Nov 2006 11:27:06 +0000 (11:27 +0000)
committerbg66 <bg66>
Wed, 22 Nov 2006 11:27:06 +0000 (11:27 +0000)
`mm-decode-coding-string'.

ChangeLog
mixi.el

index 2b7c4e6..0fde3cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-11-22  OHASHI Akira  <bg66@koka-in.org>
 
+       * mixi.el (mixi-w3-retrieve): Use `decode-coding-string' instead of
+       `mm-decode-coding-string'.
+
+2006-11-22  OHASHI Akira  <bg66@koka-in.org>
+
        * sb-mixi.el (shimbun-get-headers): Simplify.
 
 2006-11-22  OHASHI Akira  <bg66@koka-in.org>
diff --git a/mixi.el b/mixi.el
index f2d9e05..8240074 100644 (file)
--- 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)