From 80435453df7b74b7e362fdd75e94481653555ae5 Mon Sep 17 00:00:00 2001 From: bg66 Date: Mon, 23 Oct 2006 06:28:55 +0000 Subject: [PATCH] * mixi.el: Try to require `url' and `w3m'. (mixi-get-comments): Fix typo. --- ChangeLog | 5 +++++ mixi.el | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 913a654..bd5c044 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-10-23 OHASHI Akira + * mixi.el: Try to require `url' and `w3m'. + (mixi-get-comments): Fix typo. + +2006-10-23 OHASHI Akira + * mixi.el (mixi-retrieve-function): New user option. (mixi-retrieve): Abolish. (mixi-w3-retrieve): New function. diff --git a/mixi.el b/mixi.el index 3849ad5..9755b99 100644 --- a/mixi.el +++ b/mixi.el @@ -98,8 +98,9 @@ ;;; Code: +(require 'url "url" t) +(require 'w3m "w3m" t) (eval-when-compile (require 'cl)) -(autoload 'w3m-expand-url "w3m" nil t) (defgroup mixi nil "API library for accessing to mixi." @@ -1385,7 +1386,7 @@ Increase this value when unexpected error frequently occurs." (defun mixi-get-comments (parent) "Get comments of PARENT." (unless (mixi-object-p parent) - (signal 'wrong-type-argument (list 'mixi-object-p object))) + (signal 'wrong-type-argument (list 'mixi-object-p parent))) (let* ((name (mixi-object-name parent)) (list-page (intern (concat mixi-object-prefix name "-comment-list-page"))) -- 1.7.10.4