From: rif <ri...@MI...> - 2002-09-12 18:05:27
|
What am I missing? When I start lisp up, it certainly seems like there's a help function --- the message says type (help) for help. This (help) function does not seem to be an artifact, since it does seem to provide help on using CMUCL. And I'm getting a symbol conflict with matlisp. If my uninterning choice is bad, what's a better approach? rif rif@oscar:~$ lisp -init /dev/null ; Loading #p"/dev/null". CMU Common Lisp release x86-linux 3.0.8 18c+ 31 December 2001 build 3030, running on oscar For support see http://www.cons.org/cmucl/support.html Send bug reports to the debian BTS. or to pva...@de... type (help) for help, (quit) to exit, and (demo) to see the demos Loaded subsystems: Python 1.0, target Intel x86 CLOS based on PCL version: September 16 92 PCL (f) * (help) Welcome to CMUCL for Linux. If you aren't running this with ilisp in emacs, or aren't intending to use hemlock then you deserve to lose. :-) Read the documentation in /usr/share/doc/cmucl. Create your own personal image with /usr/sbin/cmuclconfig (quit) is to quit. (ed) starts hemlock (if installed) (demo) shows a list of demos (describe 'progn) gives information about progn for example. (inspect '*a*) interactively inspects *a* for example. NIL * (load "Software/matlisp/start.lisp") ; Loading #p"/home/rif/Software/matlisp/start.lisp". Converted SETLOGICALROOT. Converted GETLOGICALROOT. Converted DEFLOGICALPATH. ;; Loading #p"/home/rif/Software/matlisp/system.dcl". ;; Loading #p"/home/rif/Software/matlisp/config.lisp". ;; Loading #p"/home/rif/Software/matlisp/save.lisp". ** MATLISP is loaded. Type (HELP MATLISP) to see a list of available symbols. To use matlisp: (use-package "MATLISP") or (in-package "MATLISP-USER") ** The logical pathname matlisp has been set to: /home/rif/Software/matlisp/ T * (use-package :matlisp) Error in function USE-PACKAGE: Use'ing package MATLISP results in name conflicts for these symbols: (HELP) Restarts: 0: [CONTINUE] Unintern the conflicting symbols in the COMMON-LISP-USER package. 1: [ABORT ] Return to Top-Level. Debug (type H for help) (USE-PACKAGE :MATLISP #<The COMMON-LISP-USER package, 47/95 internal, 0/9 external>) Source: Error finding source: Error in function DEBUG::GET-FILE-TOP-LEVEL-FORM: Source file no longer exists: target:code/package.lisp. 0] 1 * (unintern 'help) T * (use-package :matlisp) T |