From 9e10a713159769251a0061de359606a78e673def Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 9 Oct 1998 00:24:14 +0000 Subject: [PATCH] Fix my useless changes. --- SEMI-CFG | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/SEMI-CFG b/SEMI-CFG index e760d73..196d83a 100644 --- a/SEMI-CFG +++ b/SEMI-CFG @@ -72,11 +72,10 @@ ;;; (let ((path (get-latest-path "bbdb" 'all-paths))) - (if path - (progn - (add-path path) - (add-path (expand-file-name "lisp" path)) ; run-in-place installation - ))) + (when path + (add-path path) + (add-path (expand-file-name "lisp" path)) ; run-in-place installation + )) ;; Or please specify path. ;; (add-path "bbdb-1.50" 'all-paths) @@ -87,11 +86,10 @@ ;;; (let ((path (get-latest-path "w3" 'all-paths))) - (if path - (progn - (add-path path) - (add-path (expand-file-name "lisp" path)) ; run-in-place installation - ))) + (when path + (add-path path) + (add-path (expand-file-name "lisp" path)) ; run-in-place installation + )) ;; Or please specify path. ;; (add-path "w3-4.0pre.20" 'all-paths) -- 1.7.10.4