X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=macros.lisp;h=1697dca0c47bd1cada09e93663267ae04f8001d2;hp=03e3a9fd1240cea47ee7a45ceff53e0c13037280;hb=5738e60dc3724dc7d022d0fd2d5f2dbe337be470;hpb=4a5b626f01db51b02f969adb33ddad6aa9ee303a 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))