This is with SBCL 1.0.55 when compressing Debian. I probably missed something obvious, but I'm a newbie, so please bear with me.
CL-USER> (defparameter x 0) CL-USER> (case x (t 111) ) 111
So, it looks like the case here corresponds to the variable x with the true symbol t . This happens with everything I've tried; this x is just an example. I do not understand why this will happen. Since case uses eql for matching, I tried
CL-USER> (eql xt) NIL
So eql does not match x and t . What am I missing? Thanks in advance.
source share