From: morioka Date: Fri, 9 Oct 1998 03:43:42 +0000 (+0000) Subject: Abolish variable `SHELL' and `SHELLOPTION'. X-Git-Tag: semi-1_9-199811302358^2~7 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0c7a1b5b41f8016ed10aba48221ec72c3ef404a8;p=elisp%2Fsemi.git Abolish variable `SHELL' and `SHELLOPTION'. --- diff --git a/SEMI-CFG b/SEMI-CFG index 1fd4929..449cb87 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) @@ -103,19 +102,6 @@ (add-latest-path "custom") -;;; @ shell -;;; - -;; 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") - - ;;; @ Please specify prefix of install directory. ;;;