[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
type declarations of special bindings
- To: common-lisp@sail.stanford.edu
- Subject: type declarations of special bindings
- From: gz@spt.entity.com (Gail Zacharias)
- Date: Fri, 22 Jan 1988 22:12:00 -0000
In the following example, does the fixnum declaration apply to the
inner reference to X (in the setq)?
(let ((X 17))
(declare (special X) (fixnum X))
(let ((X 'local))
(locally
(declare (special X))
(setq X (foo)))))