home *** CD-ROM | disk | FTP | other *** search
- ; Many people have had trouble creating an initial workspace where the tools
- ; package is accessable. This sample LSP file will create a workspace which
- ; will be loaded by default.
- ; To build, delete any existing xlisp.wks file, run xlisp, and then load
- ; this file. You may want to customize for the actual tools you want.
- (expand 5) ; Or whatever you want -- object here is to make
- ; an enlarged image to reduce garbage collections.
- (load "common") ; Common Lisp extensions
- (load "classes") ; Classes
- (load "repair") ; Repair tool
- (load "inspect") ; Inspect tool
- (load "stepper") ; Stepper tool
- (load "pp") ; Pretty printer tool
- (load "glos") ; Glossary tool (glos.txt must be in current directory)
- (load "common2") ; more Common Lisp extensions
- (use-package :tools) ; makes package :tools accessable
- (save "xlisp") ; save image
-
-