[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
*package* and printing
- To: cfry@MIT.EDU (Christopher Fry)
- Subject: *package* and printing
- From: straz@cambridge.apple.com (Steve Strassmann)
- Date: Sun, 21 Feb 1993 18:01:37 -0500
- Cc: info-mcl
>Date: Fri, 19 Feb 93 19:28:52 EST
>From: cfry@MIT.EDU (Christopher Fry)
>To: info-mcl@cambridge.apple.com
>Subject: *package* and printing
>
>I've got an application that uses 1 package "oval" throughout for
>all source code files.
>I want the listener to be in this package when the program is
>loaded so I eval
>(setq *package* (find-package 'oval)) in one of the source code files.
>
For the behavior you want, you should probably use this instead, after
loading your system:
(eval-enqueue '(in-package oval))
Trying to set *package* yourself is generally a bad idea.