Mario S. Mommer <m_mommer@yahoo.com> wrote:
+---------------
| I am very thankfull that cmucl has ext:*top-level-auto-declare*,
| and that setting it to NIL on startup lets me do
|
| (setf x 1)
|
| on toplevel without declaring a special variable.
+---------------
But you'll still get a warning:
> (setf ext:*top-level-auto-declare* nil)
NIL
> (setf x 123)
;
; Warning: This variable is undefined:
; X
;
123
>
-Rob
-----
Rob Warnock <rpw3@rpw3.org>
627 26th Avenue <URL:http://rpw3.org/>
San Mateo, CA 94403 (650)572-2607