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 >
Wrap
Text File
|
1989-01-28
|
666b
|
21 lines
; *****************************************************************
;
; L.LSP
;
; Author: Paul Nance
; Home: (919)-226-3648
; Compuserve: [73627,1733]
;
; Function Description
; -------------------------------------------------------------
; C:L This routine loads a lisp file while in AutoCAD.
; If loading file from outside of default drive
; or path, drive and path are required, otherwise
; filename alone is all that is required.
; Note:
; The "" marks or .lsp extention are not required.
;
(defun c:L ( / lo)
(setq lo (getstring "\n File to Load : "))
(load lo))