X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fmacroexpand.lisp;h=36ab43c21604b748ec3c2d3c233706e892a63dec;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=f351784667f0028a0d71c12869b4b98dd21a258a;hpb=835e0272eaedd4764be992fe2d1cde078d581ce1;p=sbcl.git diff --git a/src/code/macroexpand.lisp b/src/code/macroexpand.lisp index f351784..36ab43c 100644 --- a/src/code/macroexpand.lisp +++ b/src/code/macroexpand.lisp @@ -28,7 +28,6 @@ whenever a runtime expansion is needed. Initially this is set to FUNCALL.") -(declaim (ftype (function (t &optional (or null sb!c::lexenv))) sb!xc:macroexpand-1)) (defun sb!xc:macroexpand-1 (form &optional env) #!+sb-doc "If form is a macro (or symbol macro), expand it once. Return two values, @@ -66,7 +65,6 @@ (t (values form nil)))) -(declaim (ftype (function (t &optional (or null sb!c::lexenv))) sb!xc:macroexpand)) (defun sb!xc:macroexpand (form &optional env) #!+sb-doc "Repetitively call MACROEXPAND-1 until the form can no longer be expanded.