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

*package* and printing



 >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.