From 421a0c984eaa543eb1b9ce9ca891740754be93da Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 9 Oct 1998 03:32:37 +0000 Subject: [PATCH] Must require cl because of `find-if'. --- SEMI-CFG | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/SEMI-CFG b/SEMI-CFG index 196d83a..1fd4929 100644 --- a/SEMI-CFG +++ b/SEMI-CFG @@ -4,6 +4,8 @@ ;;; Code: +(require 'cl) + (defvar default-load-path load-path) (add-to-list 'load-path @@ -11,12 +13,11 @@ (add-to-list 'load-path (expand-file-name "." data-directory)) -(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 "apel" LISPDIR)) - )) +(when (boundp 'LISPDIR) + (add-to-list 'default-load-path LISPDIR) + (add-to-list 'load-path LISPDIR) + (add-to-list 'load-path (expand-file-name "apel" LISPDIR)) + ) (condition-case nil (require 'install) -- 1.7.10.4