Path: utzoo!mnetor!uunet!husc6!mailrus!nrl-cmf!ames!zodiac!mcconnel From: mcconnel@zodiac.ads.com (Chris McConnell) Newsgroups: comp.lang.lisp Subject: Re: Compiling lexical closures Message-ID: <3704@zodiac.UUCP> Date: 4 May 88 13:56:16 GMT References: <304@utep-vaxa.UUCP> Sender: news@zodiac.UUCP Reply-To: mcconnel@ads.com (Chris McConnell) Organization: Advanced Decision Systems, Mt. View, CA (415) 941-3912 Lines: 7 Keywords: compile closures To get a compiled closure, you want to compile the function that generates the closure, not the closure itself. So, in your example: (compile 'test) # (test 5) #<(:internal test 0) number>