From: yamaoka Date: Mon, 21 Jun 2010 23:22:29 +0000 (+0000) Subject: Don't load poe twice; X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e40a8806c02a48a3e16b54e7b2f4de65363ca3f6;p=elisp%2Fmu-cite.git Don't load poe twice; add emu subdirectory to load-path when LISPDIR is specified. --- diff --git a/ChangeLog b/ChangeLog index 5875c90..b3f7f8a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-06-21 Katsumi Yamaoka + + * MU-CFG: Don't load poe twice; add emu subdirectory to load-path + when LISPDIR is specified. + 2009-05-15 Katsumi Yamaoka * README.en (Bug reports): Remove. diff --git a/MU-CFG b/MU-CFG index 2495b5a..801824e 100644 --- a/MU-CFG +++ b/MU-CFG @@ -32,12 +32,11 @@ (add-to-list 'load-path (expand-file-name "../../site-lisp/flim" data-directory)) -(require 'poe) - (if (boundp 'LISPDIR) (progn (add-to-list 'default-load-path LISPDIR) (add-to-list 'load-path LISPDIR) + (add-to-list 'load-path (expand-file-name "emu" LISPDIR)) (add-to-list 'load-path (expand-file-name "apel" LISPDIR)) (add-to-list 'load-path (expand-file-name "flim" LISPDIR)) ))