0.pre7.125:
[sbcl.git] / src / compiler / ir1report.lisp
index c12736a..697e7c4 100644 (file)
    list of subforms suitable for a \"~{~S ~}\" format string."
   (let ((n-whole (gensym)))
     `(setf (gethash ',name *source-context-methods*)
-          #'(lambda (,n-whole)
-              (destructuring-bind ,lambda-list ,n-whole ,@body)))))
+          (lambda (,n-whole)
+            (destructuring-bind ,lambda-list ,n-whole ,@body)))))
 
 (defmacro def-source-context (&rest rest)
   (deprecation-warning 'def-source-context 'define-source-context)
   (cond ((atom form) nil)
        ((>= (length form) 2)
         (funcall (gethash (first form) *source-context-methods*
-                          #'(lambda (x)
-                              (declare (ignore x))
-                              (list (first form) (second form))))
+                          (lambda (x)
+                            (declare (ignore x))
+                            (list (first form) (second form))))
                  (rest form)))
        (t
         form)))