X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fmacroexpand.impure.lisp;h=a59a331f79e44a913e268a99541a530084b48e11;hb=9837343101c3da7b3a8f94609ec116ec5025436a;hp=8a139357d9af43fae81ad8c2d93a6fe83a0d0dd3;hpb=260f59fdcebbbfe56f65406ab77fcb6cbc760c45;p=sbcl.git diff --git a/tests/macroexpand.impure.lisp b/tests/macroexpand.impure.lisp index 8a13935..a59a331 100644 --- a/tests/macroexpand.impure.lisp +++ b/tests/macroexpand.impure.lisp @@ -13,13 +13,13 @@ ;;; From Matthew Swank on cll 2005-10-06 -(defmacro defglobal (name &optional value) +(defmacro defglobal* (name &optional value) (let ((internal (gensym))) `(progn (defparameter ,internal ,value) (define-symbol-macro ,name ,internal)))) -(defglobal glob) +(defglobal* glob) (assert (= (let ((glob 4)) glob))) (assert (null glob))