From: morioka Date: Tue, 4 Nov 1997 08:52:43 +0000 (+0000) Subject: (compile-apel): Use `config-apel'; don't use `add-to-list' for X-Git-Tag: apel-7_1~166 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9efb583336574e84ca9df46aebbb3a934a1143eb;p=elisp%2Fapel.git (compile-apel): Use `config-apel'; don't use `add-to-list' for compatibility. (install-apel): Don't call `config-apel' directly. --- diff --git a/APEL-MK b/APEL-MK index f2844bb..852fd46 100644 --- a/APEL-MK +++ b/APEL-MK @@ -1,6 +1,6 @@ ;;; -*-Emacs-Lisp-*- ;;; -;;; $Id: APEL-MK,v 0.3 1997-05-31 16:39:06 morioka Exp $ +;;; $Id: APEL-MK,v 0.4 1997-11-04 08:52:43 morioka Exp $ ;;; (defun config-apel () @@ -20,9 +20,10 @@ )) (defun compile-apel () - (add-to-list 'load-path (expand-file-name "../emu")) - (add-to-list 'load-path ".") - (require 'install) + ;;(add-to-list 'load-path (expand-file-name "../emu")) + ;;(add-to-list 'load-path ".") + ;;(require 'install) + (config-apel) (load "EMU-ELS") (load-file "APEL-ELS") (compile-elisp-modules emu-modules ".") @@ -31,7 +32,7 @@ (defun install-apel () (compile-apel) - (config-apel) + ;;(config-apel) (install-elisp-modules emu-modules "." EMU_DIR) (install-elisp-modules apel-modules "." APEL_DIR) )