From 965fb4731e5f124e4059dfdb042bc4f9396b3a1c Mon Sep 17 00:00:00 2001 From: tsuchiya Date: Mon, 28 May 2001 02:05:53 +0000 Subject: [PATCH] * lisp/dgnushack.el (toplevel): Add paths if and only if APEL and FLIM can't be found. --- ChangeLog | 5 +++++ lisp/dgnushack.el | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6953b4e..ada0b7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-05-28 TSUCHIYA Masatoshi + + * lisp/dgnushack.el (toplevel): Add paths if and only if APEL and + FLIM can't be found. + 2001-05-16 Katsumi Yamaoka * lisp/dgnushack.el (dgnushack-bind-colon-keywords): Don't ignore diff --git a/lisp/dgnushack.el b/lisp/dgnushack.el index 267c2ea..f599298 100644 --- a/lisp/dgnushack.el +++ b/lisp/dgnushack.el @@ -141,8 +141,10 @@ ;; optimized because it requires `poe' and then modify the functions. (or (featurep 'path-util) (load "apel/path-util")) -(add-path "apel") -(add-path "flim") +(or (locate-library "poe") + (add-path "apel")) +(or (locate-library "mel") + (add-path "flim")) (unless (module-installed-p 'mel) ;; FLIM 1.14 may have installed in two "flim" subdirectories. (push (expand-file-name "flim" -- 1.7.10.4