From e028573fb8665118160b178df554f37131fe50c4 Mon Sep 17 00:00:00 2001 From: bg66 Date: Wed, 24 Jan 2007 02:03:19 +0000 Subject: [PATCH] Fix the last change. --- mixi.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mixi.el b/mixi.el index c862be6..47df062 100644 --- a/mixi.el +++ b/mixi.el @@ -1184,8 +1184,6 @@ Increase this value when unexpected error frequently occurs." "Return the comment-count of DIARY." (unless (mixi-diary-p diary) (signal 'wrong-type-argument (list 'mixi-diary-p diary))) - (unless (aref (cdr diary) 3) - (mixi-realize-diary diary)) (aref (cdr diary) 3)) (defun mixi-diary-time (diary) @@ -1729,7 +1727,6 @@ Increase this value when unexpected error frequently occurs." "Return the comment-count of TOPIC." (unless (mixi-topic-p topic) (signal 'wrong-type-argument (list 'mixi-topic-p topic))) - (mixi-realize-topic topic) (aref (cdr topic) 3)) (defun mixi-topic-time (topic) @@ -1949,7 +1946,6 @@ Increase this value when unexpected error frequently occurs." "Return the comment-count of EVENT." (unless (mixi-event-p event) (signal 'wrong-type-argument (list 'mixi-event-p event))) - (mixi-realize-event event) (aref (cdr event) 3)) (defun mixi-event-time (event) -- 1.7.10.4