リードテーブルを標準の状態に復元する方法 - lisp-cookbook-ja/common-lisp GitHub Wiki
リードテーブルを標準の状態に復元する方法
set-macro-character 等で色々と変更を加えた readtablbe を標準の状態に戻すには、copy-readtable にnilを指定し、readtablbeに再度セットします。
(setq *readtable* (copy-readtable nil))
set-macro-character 等で色々と変更を加えた readtablbe を標準の状態に戻すには、copy-readtable にnilを指定し、readtablbeに再度セットします。
(setq *readtable* (copy-readtable nil))