From: Raymond T. <to...@rt...> - 2002-09-12 19:02:29
|
>>>>> "rif" == rif <ri...@MI...> writes: rif> In my CMUCL, it seems that at least (quit) (I don't know if there's rif> anything else) is part of the common-lisp-user package --- if I rif> (in-package :matlisp) I can't (quit) without changing back. This was rif> what made me not want to do it, although it's not a big deal (of rif> course, uninterning the CMUCL help is not a big deal either). That's because quit is actually in the ext package so if you're in the matlisp-user package you need to type (ext:quit). Use (describe 'quit) to find out where the symbol really lives. Matlisp should probably import the ext package, or at least ext:quit. Ray |