* README.en (Required environment): Fix supported Emacsen.
* Sync up with the latest SEMI.
A snapshot is available from
ftp://ftp.jpl.org/pub/elisp/wemi/snapshots/wemi-
19981010.tar.gz
+1998-10-08 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * semi-def.el: Restore the requirement for `custom'.
+
+ * README.en (Required environment): Fix supported Emacsen.
+
+1998-10-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * SEMI-CFG: Abolish variable `SHELL' and `SHELLOPTION'.
+
+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
+ require cl.
+
+1998-10-08 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * SEMI-CFG: Add "custom" to load-path.
+
+\f
1998-10-07 Katsumi Yamaoka <yamaoka@jpl.org>
* WEMI: Version 1.9.0 (Fuji) released.
Required environment
====================
- WEMI supports XEmacs 20.3 or later with mule, and Emacs 20.2.
+ WEMI supports XEmacs 20.2 or later with mule, and Emacs 20.
WEMI does not support anything older than Emacs 19.28 or XEmacs
19.14. WEMI also does not support Emacs 19.29 to 19.34, XEmacs
;;; Code:
-(require 'cl)
-
(defvar default-load-path load-path)
(add-to-list 'load-path
(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)
;; (add-path "w3-4.0pre.20" 'all-paths)
-;;; @ shell
+;;;
+;;; @@ Please specify CUSTOM path.
;;;
-;; Please specify shell command path.
-(setq SHELL
- (find-if (function file-exists-p)
- '("/bin/sh" "/usr/bin/sh")
- ))
-
-;; Please specify shell command option.
-(setq SHELLOPTION "-c")
+(add-latest-path "custom")
;;; @ Please specify prefix of install directory.
(eval-when-compile (require 'cl))
+(require 'custom)
(defconst mime-user-interface-product '["WEMI" (1 9 0) "Fuji"]
"Implementation name, version name and numbers of MIME-kernel package.")