From 9f23da60766c93aa816c96a7f5595f6677a0ab49 Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 14 Dec 2001 09:22:29 +0000 Subject: [PATCH] (load-path): Must add current-directory. - Display error message if `install' is not found. --- TOMOYO-CFG | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TOMOYO-CFG b/TOMOYO-CFG index 9a82852..acbddfd 100644 --- a/TOMOYO-CFG +++ b/TOMOYO-CFG @@ -4,7 +4,11 @@ ;;; Code: -(require 'install) +(add-to-list 'load-path (expand-file-name ".")) + +(condition-case nil + (require 'install) + (error (error "Please install APEL."))) ;;; @ Please specify prefix of install directory. -- 1.7.10.4