Re: Global lexical variables?



On Oct 30, 8:42 pm, Kaz Kylheku <kkylh...@xxxxxxxxx> wrote:
The ``it'' that CLISP is not approving of here is that you are trying
to use an undefined variable.  This is not well-defined behavior in Lisp.

But I did define it:

(defvar clauses-table
(make-hash-table
:test 'equal))

Doesn't that count as a definition?

(Thanks for the explanation about the problems with using global
lexical hacks -- my intuition was right about that, at least :-))
.