[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
local declarations
- To: fahlman@cmu-cs-c
- Subject: local declarations
- From: vanroggen@DEC-HUDSON
- Date: Mon, 06 May 85 12:53:00 EDT
- Cc: common-lisp@su-ai
What I was complaining about was the implication in the manual that
the following code was "not meaningful":
(TYPECASE X
(SIMPLE-STRING
(LOCALLY (DECLARE (SIMPLE-STRING X))
...))
...)
This local declaration isn't "off in left field somehwere"; it's
quite lexical. (I'm assuming X isn't SPECIAL; that problem has
been aired a number of times now.)
---Walter