[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: init.lisp
- To: info-mcl@digitool.com
- Subject: Re: init.lisp
- From: schmill@earhart.cs.umass.edu (Matt Schmill)
- Date: 2 Jan 1995 15:10:05 GMT
- Organization: OrgFreeware
- References: <Pine.3.89.9412301021.A541136423-0100000@medcolpa.edu>
- Reply-to: schmill@cs.umass.edu
- Sender: owner-info-mcl@digitool.com
;;; 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.