gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gcl-devel] put :common-lisp in *features* too, when configured --enable


From: John Paul Wallington
Subject: [Gcl-devel] put :common-lisp in *features* too, when configured --enable-ansi ?
Date: Mon, 02 Dec 2002 12:35:33 +0000

The HyperSpec entry for *features* says that:

:common-lisp
   
    This feature must appear in *features* for any implementation that has one
    or more of the features :x3j13, :draft-ansi-cl, or :ansi-cl.


Here is a patch to satisfy the requirement:

Index: ansi_cl.lisp
===================================================================
RCS file: /cvsroot/gcl/gcl/unixport/ansi_cl.lisp,v
retrieving revision 1.4
diff -u -r1.4 ansi_cl.lisp
--- ansi_cl.lisp        23 Oct 2002 13:34:20 -0000      1.4
+++ ansi_cl.lisp        2 Dec 2002 12:19:10 -0000
@@ -143,7 +143,8 @@
 (unintern 'int)
 (unintern 'shadow-system)
 
-(push ':ansi-cl *features*)
+(push :common-lisp *features*)
+(push :ansi-cl *features*)
 
 
(rename-package 'common-lisp 'common-lisp '(cl))
 (rename-package 'user 'common-lisp-user '(cl-user user))


WDYT?

-- 
John Paul Wallington





reply via email to

[Prev in Thread] Current Thread [Next in Thread]