From 818f2430eb33b33624f41703b55f8b8faec40c44 Mon Sep 17 00:00:00 2001 Message-Id: <818f2430eb33b33624f41703b55f8b8faec40c44.1717454437.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 21 Feb 2007 13:01:04 +0000 Subject: [PATCH] Checking if CLISP is started with the -ansi option Organization: Straylight/Edgeware From: espen --- tools/clg-tools.asd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/clg-tools.asd b/tools/clg-tools.asd index c019843..d678333 100644 --- a/tools/clg-tools.asd +++ b/tools/clg-tools.asd @@ -6,6 +6,9 @@ (in-package #:clg-tools) +#+clisp +(unless custom:*ansi* + (error "CLISP must be started with the -ansi option")) (defsystem clg-tools :components ((:file "autoexport") -- [mdw]