Use `if' instead of `when'.
authoryamaoka <yamaoka>
Wed, 25 Aug 1999 07:58:29 +0000 (07:58 +0000)
committeryamaoka <yamaoka>
Wed, 25 Aug 1999 07:58:29 +0000 (07:58 +0000)
SEMI-CFG

index 9847f86..7485f10 100644 (file)
--- a/SEMI-CFG
+++ b/SEMI-CFG
 ;;;
 
 (let ((path (get-latest-path "bbdb" 'all-paths)))
-  (when path
-    (add-path path)
-    (add-path (expand-file-name "lisp" path)) ; run-in-place installation
-    ))
+  (if path
+      (progn
+       (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)
 ;;;
 
 (let ((path (get-latest-path "w3" 'all-paths)))
-  (when path
-    (add-path path)
-    (add-path (expand-file-name "lisp" path)) ; run-in-place installation
-    ))
+  (if path
+      (progn
+       (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)