[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: progv and dynamic variables



>> 3.
>>  (defun foo (a s v)
>>   (progv s v
>>     (declare (special a))
>>     (print a)))

>> The binding of `a' during the call to foo is lexical, but the
>> reference in (print a) is dynamic.

Aren't declarations illegal before a progv body?

-john foderaro