From 9efb583336574e84ca9df46aebbb3a934a1143eb Mon Sep 17 00:00:00 2001 From: morioka Date: Tue, 4 Nov 1997 08:52:43 +0000 Subject: [PATCH] (compile-apel): Use `config-apel'; don't use `add-to-list' for compatibility. (install-apel): Don't call `config-apel' directly. --- APEL-MK | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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) ) -- 1.7.10.4