From 3e805968ef0a5d1aff027bd3ac9cc516603363ab Mon Sep 17 00:00:00 2001 From: morioka Date: Thu, 8 Oct 1998 23:32:03 +0000 Subject: [PATCH] Don't use `when' before install is required; don't require cl. --- SEMI-CFG | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/SEMI-CFG b/SEMI-CFG index de45f0a..b5613bb 100644 --- a/SEMI-CFG +++ b/SEMI-CFG @@ -4,8 +4,6 @@ ;;; Code: -(require 'cl) - (defvar default-load-path load-path) (add-to-list 'load-path @@ -13,11 +11,12 @@ (add-to-list 'load-path (expand-file-name "." data-directory)) -(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)) - ) +(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)) + )) (condition-case nil (require 'install) -- 1.7.10.4