+1998-10-08 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * SEMI-CFG: Use `add-latest-path' for adding "custom" to
+ load-path.
+
1998-10-08 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* SEMI-CFG: Don't use `when' before install is required; don't
;;;
(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)
;;; @@ Please specify CUSTOM path.
;;;
-(let ((path (get-latest-path "custom" 'all-paths)))
- (when path
- (add-path path)
- (add-path (expand-file-name "lisp" path)) ; run-in-place installation
- ))
-
-;; Or please specify path.
-;; (add-path "custom-1.9962" 'all-paths)
+(add-latest-path "custom")
;;; @ shell