Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!bloom-beacon!mit-eddie!mit-amt!sokolov From: sokolov@mit-amt (Michael Sokolov) Newsgroups: comp.lang.lisp Subject: Re: Survey question Keywords: reader,type Message-ID: <3320@mit-amt> Date: 26 Nov 88 16:31:35 GMT References: <26250@bu-cs.BU.EDU> Reply-To: sokolov@media-lab.media.mit.edu (Michael Sokolov) Organization: MIT Media Lab, Cambridge MA Lines: 9 >(setq foo (read)) >(lambda (x) x) I think the question was what type of object is foo bound to? I think it is basically just a list. (fboundp 'foo) returns nil. however, (funcall foo 1) does return 1. Accordingly, (functionp foo) returns t. I discovered that (functionp 'bar) also returns t, in spite of the fact that bar was previously unbound: anyone know why? MS