From 52cc75066ee6bb679448113a85b5839dde0c5ae2 Mon Sep 17 00:00:00 2001 Message-Id: <52cc75066ee6bb679448113a85b5839dde0c5ae2.1716493309.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 21 Feb 2007 13:19:28 +0000 Subject: [PATCH] Only check PARSE-NAMESTRING for ANSI compatibility in CLISP Organization: Straylight/Edgeware From: espen --- tools/clg-tools.asd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/clg-tools.asd b/tools/clg-tools.asd index d678333..bbe1628 100644 --- a/tools/clg-tools.asd +++ b/tools/clg-tools.asd @@ -7,8 +7,8 @@ (in-package #:clg-tools) #+clisp -(unless custom:*ansi* - (error "CLISP must be started with the -ansi option")) +(unless custom:*parse-namestring-ansi* + (error "Standard behaviour of PARSE-NAMESTRING must be enabled by setting CUSTOM:*PARSE-NAMESTRING-ANSI* to non-NIL or running clisp with the -ansi option")) (defsystem clg-tools :components ((:file "autoexport") -- [mdw]