neekcotrack Posted August 22, 2008 Posted August 22, 2008 I how would I run a lisp in another lisp? I tryed this but did not work. (defun C:Run () (command "Run2")) Run is the first lisp and run2 is the second lisp. Thanks for the help. Quote
lpseifert Posted August 23, 2008 Posted August 23, 2008 Either one or the other (c:run2) (run2) Quote
borgunit Posted August 23, 2008 Posted August 23, 2008 Just an FYI, for (command "Run2") to work, the function would need to look like (defun C:Run2 (... in LISP Quote
BIGAL Posted August 26, 2008 Posted August 26, 2008 Just a bit extra the lisp run2 must already be loaded for it to work. In a large application we wrote calls to other lisps to save recoding the same thing over and over these were contained in a master lisp that was loaded on startup. (mainly to do with layer handling) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.