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

T = NIL



C'mon, people, think!  If you do

  (set 't nil)

then neither Barmar's suggestion

  (set t 't)

nor CEB's

  (set 't t)

will succeed in restoring veritas aeterna!  The first will do the
greater damage of binding NIL to 'T (it turns out the system won't let
you do this one); the latter has no effect.  The only thing that will
work (and it does, I tried it) is

  (set 't 't)

i.e., both occurrences of T must be quoted.

-- Scott