[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: init.lisp



;;; I seem to have difficulty with getting init.lisp to load upon
;;; opening a saved application. The following example does not work
;;; as I expected.

You could use an init file, or push function symbols onto *lisp-startup-functions*
like this :

(pushnew 'stack-my-wood   *lisp-startup-functions*)
(pushnew 'find-my-package *lisp-startup-functions*)

and then save the application. Each time you launch the application, it will
funcall the startup functions. I personally prefer this to having an init file.