I used local-time's reader macro, until the moment I realized I don't need it (want to read back a date? Just use format or local-time:format-datestring and it won't output a @
…).
However, it conflicts with Parenscript code using ps:@
illegal terminating character after a colon: #@
Can I disable the reader macro without restarting the image?
What it does is
(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))
I don't see a reader macro on Parenscript's side.