home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xl21hos2.zip / MAKEWKS.LSP < prev    next >
Text File  |  1995-12-27  |  860b  |  19 lines

  1. ; Many people have had trouble creating an initial workspace where the tools
  2. ; package is accessable. This sample LSP file will create a workspace which
  3. ; will be loaded by default.
  4. ; To build, delete any existing xlisp.wks file, run xlisp, and then load
  5. ; this file. You may want to customize for the actual tools you want.
  6. (expand 5)        ; Or whatever you want -- object here is to make
  7.             ; an enlarged image to reduce garbage collections.
  8. (load "common")        ; Common Lisp extensions
  9. (load "classes")    ; Classes
  10. (load "repair")        ; Repair tool
  11. (load "inspect")    ; Inspect tool
  12. (load "stepper")    ; Stepper tool
  13. (load "pp")        ; Pretty printer tool
  14. (load "common2")    ; more Common Lisp extensions
  15. (load "glos")        ; Glossary tool (glos.txt must be in current directory)
  16. (use-package :tools)    ; makes package :tools accessable
  17. (save "xlisp")        ; save image
  18.  
  19.