X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=macros.lisp;fp=macros.lisp;h=1697dca0c47bd1cada09e93663267ae04f8001d2;hp=03e3a9fd1240cea47ee7a45ceff53e0c13037280;hb=6e84de6e7bff9079d0b6ba62a3c85d2eb98f2eb4;hpb=5559333472a7a87c0df192897037926a75985c9b diff --git a/macros.lisp b/macros.lisp index 03e3a9f..1697dca 100644 --- a/macros.lisp +++ b/macros.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: macros.lisp,v 1.2 2003/06/06 21:59:29 kevin Exp $ +;;;; $Id: macros.lisp,v 1.3 2003/07/11 06:58:32 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -164,3 +164,7 @@ (print-seconds secs) (format t ", time per iteration: ") (print-seconds (coerce (/ secs ,n) 'double-float)))))))) + +(defmacro mv-bind (vars form &body body) + `(multiple-value-bind ,vars ,form + ,@body))