我使用本地时间的阅读器宏,直到我意识到我不需要它(想读回日期?只需使用格式或本地时间:格式日期字符串,它不会输出@
...)。
但是,它与使用 Parenscript 代码冲突ps:@
冒号后的非法终止字符:#@
我可以在不重新启动图像的情况下禁用阅读器宏吗?
它的作用是
(defun enable-read-macros ()
"Enables the local-time reader macros for literal timestamps and universal time."
(set-macro-character #\@ '%read-timestring)
(set-dispatch-macro-character #\# #\@ '%read-universal-time)
(values))
我没有在 Parenscript 方面看到阅读器宏。