From da1be5fc9956c2e6c8400c44ec66f0889c2e5571 Mon Sep 17 00:00:00 2001 From: morioka Date: Sun, 15 Mar 1998 12:14:30 +0000 Subject: [PATCH] Insert version check code. --- SEMI-CFG | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/SEMI-CFG b/SEMI-CFG index beb079d..2880c5d 100644 --- a/SEMI-CFG +++ b/SEMI-CFG @@ -1,6 +1,6 @@ ;;; -*-Emacs-Lisp-*- ;;; -;;; $Id: SEMI-CFG,v 1.2 1998-03-13 12:55:51 morioka Exp $ +;;; $Id: SEMI-CFG,v 1.3 1998-03-15 12:14:30 morioka Exp $ ;;; (defvar default-load-path load-path) @@ -16,9 +16,18 @@ (add-to-list 'load-path (expand-file-name "apel" LISPDIR)) ) -(require 'install) +(condition-case nil + (require 'install) + (error (error "Please install APEL."))) (require 'cl) +(or (module-installed-p 'calist) + (error "Please install latest APEL.")) +(or (module-installed-p 'mel) + (error "Please install MEL.")) +(if (module-installed-p 'tm-view) + (error "Please remove tm from load-path.")) + (add-path "bitmap-mule") (add-path "mel") -- 1.7.10.4