jscl
jscl copied to clipboard
typep bug
CL-USER> (typep 'symbol 'standard-object)
ERROR: The object `SYMBOL' is not of type `"STD-INSTANCE"'
CL-USER>
must be
CL-USER> (typep 'symbol 'standard-object)
nil
https://github.com/jscl-project/jscl/blob/aaa2365ea55254eb25fc07c5209b89f9fb1c478a/src/types.lisp#L218