From aff878808f2af58dec22da61acdd3b02ed77daf2 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Sat, 10 Oct 1998 08:30:30 +0000 Subject: [PATCH] * semi-def.el: Restore the requirement for `custom'. * 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 --- ChangeLog | 25 +++++++++++++++++++++++++ README.en | 2 +- SEMI-CFG | 25 +++++++++---------------- semi-def.el | 1 + 4 files changed, 36 insertions(+), 17 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4dd53d4..44719a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +1998-10-08 Katsumi Yamaoka + + * semi-def.el: Restore the requirement for `custom'. + + * README.en (Required environment): Fix supported Emacsen. + +1998-10-09 MORIOKA Tomohiko + + * SEMI-CFG: Abolish variable `SHELL' and `SHELLOPTION'. + +1998-10-08 Katsumi Yamaoka + + * SEMI-CFG: Use `add-latest-path' for adding "custom" to + load-path. + +1998-10-08 MORIOKA Tomohiko + + * SEMI-CFG: Don't use `when' before install is required; don't + require cl. + +1998-10-08 Katsumi Yamaoka + + * SEMI-CFG: Add "custom" to load-path. + + 1998-10-07 Katsumi Yamaoka * WEMI: Version 1.9.0 (Fuji) released. diff --git a/README.en b/README.en index b292279..3c97c91 100644 --- a/README.en +++ b/README.en @@ -38,7 +38,7 @@ What's WEMI? 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 diff --git a/SEMI-CFG b/SEMI-CFG index ff5173c..152aa0a 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) @@ -96,17 +95,11 @@ ;; (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. diff --git a/semi-def.el b/semi-def.el index 057cbb6..8b21947 100644 --- a/semi-def.el +++ b/semi-def.el @@ -28,6 +28,7 @@ (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.") -- 1.7.10.4