home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / winlisp.zip / LISPLIB.LZH / STARTUP.WL < prev   
Text File  |  1989-09-22  |  502b  |  13 lines

  1. ;=============== WinLisp startup  ======================================
  2. ;=============== The content of this file is evaluated each time WinLisp
  3. ;=============== starts. You may add any initialisation you like ! =====
  4.  
  5. (progn 
  6.    (setq print-for-read ())
  7.    (printlevel 5) (printline 50) (printlength 200)  ;limit long impressions
  8.    (loadfile "autoload")
  9.    (autoload "cmonlib" adjoin format do do* setf defsetf)
  10.    (autoload "oop" defclass classp subclassp field-list new defmethod)
  11. )
  12.  
  13.