Search code examples
lispcommon-lispallegro-cl

How to make Allegro Common Lisp case sensitive?


How do I make Allegro Lisp case sensitive. I've tried the following

(setf (readtable-case rt) :default)

but it doesn't work.


Solution

  • So it appears the docs are wrong but this appears to work I think.

    (setf (readtable-case *readtable*) :invert)