Message 1 of 28
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a lisp routine that is loaded at startup via an MNL file like so;
(defun C:MyFunc ()
)
I would like to automatically run this routine once at startup. If I put a call to "(c:MyFunc)" BEFORE the defun, I get "error: no function definition C:MyFunc". This makes sense. However, when I call it AFTER the defun, the routine runs over and over in an endless loop. Is it possible to do this?
Solved! Go to Solution.