;;; BTW, for those who haven't run into it, the ;;; (set 't nil) "feature" also occurs for keywords: ;;; For example, while (setq :aaa :bbb) loses: > (setq xxx :aaa) :AAA > (set xxx :bbb) :BBB > :bbb :BBB > :aaa :BBB ;;; Chasing down bugs of this nature can be most ;;; interesting. ;;; ;;; NICHAEL ;;; ;;; P.S. One can back out of the above with: (set ':aaa ':aaa)