Comment 2 for bug 1995445

Revision history for this message
Fedorov Alexander (gleefre) wrote :

Same problem with LAMBDA:

CL-USER> (lisp-implementation-type)
"SBCL"
CL-USER> (lisp-implementation-version)
"2.3.11"
CL-USER> (setf *print-pretty* nil)
NIL
CL-USER> (sb-cltl2:macroexpand-all '(lambda () (+ 1 2)))
(LAMBDA NIL (+ 1 2))
CL-USER> (macroexpand '(lambda () (+ 1 2)))
(FUNCTION (LAMBDA NIL (+ 1 2)))
T