home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / GR / GR506.ZIP / ACAD2.EXE / L.DOC < prev    next >
Text File  |  1989-01-28  |  666b  |  21 lines

  1. ; *****************************************************************
  2. ;
  3. ;            L.LSP
  4. ;
  5. ;       Author: Paul Nance
  6. ;         Home: (919)-226-3648
  7. ;   Compuserve: [73627,1733]
  8. ;
  9. ;  Function Description
  10. ;  -------------------------------------------------------------
  11. ;     C:L  This routine loads a lisp file while in AutoCAD.
  12. ;          If loading file from outside of default drive
  13. ;          or path, drive and path are required, otherwise
  14. ;          filename alone is all that is required.
  15. ;       Note:
  16. ;          The "" marks or .lsp extention are not required.
  17. ;
  18. (defun c:L ( / lo)
  19. (setq lo (getstring "\n File to Load : "))
  20. (load lo))
  21.