From ... From: Erik Naggum Subject: Re: Newbie asking for help Date: 2000/06/28 Message-ID: <3171199725629646@naggum.no>#1/1 X-Deja-AN: 640082468 References: <8iti9v$d19$1@nnrp1.deja.com> <39527922.5BBF41CB@gmx.de> <3953971B.81E3A336@pacbell.net> <3170780959479982@naggum.no> <3953CD19.B8520C8@ISOMEDIA.COM> <3958397F.E7A5B9E3@pacbell.net> <39591269.4A3B0277@pacbell.net> mail-copies-to: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 962216488 4439 195.0.192.66 (28 Jun 2000 18:21:28 GMT) Organization: Naggum Software; vox: +47 8800 8879; fax: +47 8800 8601; http://www.naggum.no User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.7 Mime-Version: 1.0 NNTP-Posting-Date: 28 Jun 2000 18:21:28 GMT Newsgroups: comp.lang.lisp * Simon Brooke | > If you need clarification: SETQ does not _create_ a binding. It | > _modifies_ an _existing_ binding. | | That is a bald assertion. Undoubtedly you believe it. Well, as a good Lisp programmer should. It happens to be true. You are still wrong on every technical count you have raised. That's pretty good work, actually, since by chance you'd be right at least _some_ of the time. | It isn't what the Aluminium Book says, and it isn't what the | Hyperspec says. Earlier, you were just wrong. This, now, is a _lot_ worse. | Furthermore, its falsehood is demonstrable by simple reference to | any working Common LISP system: | | USER(1): (boundp 'foo) | NIL | USER(2): (setq foo 123) | 123 | USER(3): (boundp 'foo) | T And (let ((foo 1)) (boundp 'foo)) produces _what_ before and after that setq form? Did you look at the description of boundp? Are you sure you are gaining anything by demonstrating what you are _in fact_ demonstrating, given that it differs somewhat from what you think you are demonstrating, to put it very mildly? #:Erik -- If this is not what you expected, please alter your expectations.