From: Raymond T. <to...@rt...> - 2002-09-12 15:45:52
|
>>>>> "rif" == rif <ri...@MI...> writes: rif> If I try to (use-package "matlisp"), it says it's not a package. I rif> can choose 0 in the debugger to "Make this package", but still no rif> help: rif> * (use-package "matlisp") It's case sensitive. Try (use-package "MATLISP") or (in-package "MATLISP-USER") as the message says. (Or (use-package :matlisp) or (in-package :matlisp-user)). Should probably change the message to use the keywords instead of strings. Ray |