From de6c14278916bbee35e17ceb5b9869aa3dd24ca2 Mon Sep 17 00:00:00 2001 From: bg66 Date: Mon, 23 Oct 2006 10:56:03 +0000 Subject: [PATCH] * (toplevel): Don't use the FILENAME argument of `require'. --- ChangeLog | 4 ++++ mixi.el | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a71294c..57d89c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-10-23 OHASHI Akira + * (toplevel): Don't use the FILENAME argument of `require'. + +2006-10-23 OHASHI Akira + * mixi.el (with-mixi-decoded-time-value): New macro. (mixi-encode-time-value): New function. (mixi-time-less-p): Ditto. diff --git a/mixi.el b/mixi.el index 6f518b3..0ef816d 100644 --- a/mixi.el +++ b/mixi.el @@ -61,7 +61,7 @@ ;; (setq buffer-read-only t) ;; (goto-char (point-min))) ;; -;; Display newest 3 diaries including all comments like a mail format. +;; Display newest 3 diaries including one comment like a mail format. ;; Comments are displayed like a reply mail. ;; ;; (let ((max-numbers 3) @@ -99,11 +99,11 @@ ;;; Code: (condition-case nil - (require 'url "url") + (require 'url) (error)) (condition-case nil - (require 'w3m "w3m") + (require 'w3m) (error)) (eval-when-compile (require 'cl)) -- 1.7.10.4