From a76e4e34518d14b6596150e49c153383465412e4 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sun, 13 Jan 1991 23:35:01 +0000 Subject: [PATCH] Added new EVAL-NAME keyword to DEFTRANSFORM to allow simple use of closures for making similar transforms. --- compiler/macros.lisp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/compiler/macros.lisp b/compiler/macros.lisp index f6ec8411c..d5517d47f 100644 --- a/compiler/macros.lisp +++ b/compiler/macros.lisp @@ -384,7 +384,8 @@ ;;; automatically create the result lambda. ;;; (defmacro deftransform (name (lambda-list &optional (arg-types '*) (result-type '*) - &key result policy node defun-only) + &key result policy node defun-only + eval-name) &body body) "Deftransform Name (Lambda-List [Arg-Types] [Result-Type] {Key Value}*) Declaration* Form* @@ -428,11 +429,16 @@ :Policy - A form which is supplied to the Policy macro to determine whether this transformation is appropriate. If the result is false, then the transform automatically passes. + :Eval-Name + - The name is actually a form to be evaluated. Useful for getting + closures that transform similar functions. :Defun-Only - Don't actually instantiate a transform, instead just DEFUN Name with the specified transform definition function. This may be later instantiated with %Deftransform." + (when (and eval-name defun-only) + (error "Can't specify both DEFUN-ONLY and EVAL-NAME.")) (let ((n-args (gensym)) (n-node (or node (gensym))) (n-decls (gensym)) @@ -461,7 +467,7 @@ (if defun-only `(defun ,name ,@stuff) `(%deftransform - ',name + ,(if eval-name name `',name) '(function ,arg-types ,result-type) #'(lambda ,@stuff))))))) -- GitLab