I will try this. However, I must raise the issue: REQUIRE is deprecated. If there is some magic that went into REQUIRE in order to do away with package locks, it should be put into LOAD as well.
Cheers Marco On Mar 2, 2005, at 10:34 AM, Raymond Toy wrote: >>>>>> "Marco" == Marco Antoniotti <[EMAIL PROTECTED]> writes: > > > Marco> All of them. The first one the bombs is the grey streams > one. > > Can you apply the attached patch? It basically changes the load's to > require's. > > Ray > > > > Index: config.lisp > =================================================================== > RCS file: /project/cmucl/cvsroot/src/tools/config.lisp,v > retrieving revision 1.7 > diff -u -r1.7 config.lisp > --- config.lisp 20 Jul 2003 13:57:24 -0000 1.7 > +++ config.lisp 2 Mar 2005 15:29:21 -0000 > @@ -79,13 +79,13 @@ > > (gc-off) > (when load-gray-streams > - (load "library:subsystems/gray-streams-library")) > + (require :gray-streams)) > (when load-clx > - (load "library:subsystems/clx-library")) > + (require :clx)) > (when load-clm > - (load "library:subsystems/clm-library")) > + (require :clm)) > (when load-hemlock > - (load "library:subsystems/hemlock-library")) > + (require :hemlock)) > (dolist (f other) (load f)) > > (setq *info-environment* > -- Marco Antoniotti http://bioinformatics.nyu.edu NYU Courant Bioinformatics Group tel. +1 - 212 - 998 3488 715 Broadway 10th FL fax. +1 - 212 - 998 3484 New York, NY, 10003, U.S.A.
