From 0c7a1b5b41f8016ed10aba48221ec72c3ef404a8 Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 9 Oct 1998 03:43:42 +0000 Subject: [PATCH] Abolish variable `SHELL' and `SHELLOPTION'. --- SEMI-CFG | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) 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. ;;; -- 1.7.10.4