reader macro function -> constituant character
Hello,
What would be the definition of a reader macro function for
character that just returns the character as a normal constituant
character? In the example below, I want '{abc to still evaluate to {ABC
CL-USER 10 > (get-macro-character #\{)
NIL
NIL
CL-USER 11 > '{abc
{ABC
CL-USER 12 > (set-macro-character #\{ (lambda (stream char) char))
T
CL-USER 13 > '{
#\{
CL-USER 14 > abc
Error: The variable ABC is unbound.
Francis