From 6d0c1491fd35bbf2d9f405d0708d3cbc51fb1d16 Mon Sep 17 00:00:00 2001 Message-Id: <6d0c1491fd35bbf2d9f405d0708d3cbc51fb1d16.1716401147.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]