Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!wasatch!defun.utah.edu!sandra From: sandra%defun.utah.edu@wasatch.UUCP (Sandra J Loosemore) Newsgroups: comp.lang.lisp Subject: Re: package question Message-ID: <1242@wasatch.UUCP> Date: 6 Mar 89 21:41:03 GMT References: <80300009@p.cs.uiuc.edu> <36977@think.UUCP> Sender: news@wasatch.UUCP Reply-To: sandra%defun.utah.edu.UUCP@wasatch.UUCP (Sandra J Loosemore) Organization: PASS Research Group Lines: 13 In article <36977@think.UUCP> barmar@wotan.think.com.UUCP (Barry Margolin) writes: >(find-symbol "symbol-name" "package-name") This is almost correct. Some Common Lisp implementations (notably, HPCL-I) require the "package" argument to FIND-SYMBOL to be a package and won't accept a package name. If you really want to be portable, say (find-symbol "symbol-name" (find-package "package-name")) -Sandra Loosemore (sandra@cs.utah.edu)