X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=macros.lisp;h=c448b92e2c5ed4817bdf644d42edd5b0762a210f;hp=bf47c63bb005f95e00fbe86f043e37aa296658c9;hb=HEAD;hpb=baa9f58d849dfeee2fa14c5889d42a626c88699e diff --git a/macros.lisp b/macros.lisp index bf47c63..c448b92 100644 --- a/macros.lisp +++ b/macros.lisp @@ -155,7 +155,7 @@ `(/ (+ ,@args) ,(length args))) (defmacro with-gensyms (syms &body body) - `(let ,(mapcar #'(lambda (s) `(,s (gensym))) + `(let ,(mapcar #'(lambda (s) `(,s (gensym ,(format nil "~A-" s)))) syms) ,@body))