Skip to content
Snippets Groups Projects
Commit 81ff26ee authored by ram's avatar ram
Browse files

Changed ONCE-ONLY to use LET* instead of LET, cause I was tired of not being

able to do it, and it can't cause any problems that I can think of.
parent f2865b76
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extensions.lisp,v 1.8 1991/02/08 13:32:27 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extensions.lisp,v 1.9 1991/04/24 20:30:13 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -305,11 +305,10 @@ ...@@ -305,11 +305,10 @@
;;; ;;;
(defmacro once-only (specs &body body) (defmacro once-only (specs &body body)
"Once-Only ({(Var Value-Expression)}*) Form* "Once-Only ({(Var Value-Expression)}*) Form*
Create Let which evaluates each Value-Expression, binding a temporary Create a Let* which evaluates each Value-Expression, binding a temporary
variable to the result, and wrapping the Let around the result of the variable to the result, and wrapping the Let* around the result of the
evaluation of Body. Within the body, each Var is bound to the corresponding evaluation of Body. Within the body, each Var is bound to the corresponding
temporary variable. If the Value-Expression is a constant, then we just pass temporary variable."
it through."
(let ((n-binds (gensym)) (let ((n-binds (gensym))
(n-temp (gensym))) (n-temp (gensym)))
(collect ((names) (collect ((names)
...@@ -324,10 +323,10 @@ ...@@ -324,10 +323,10 @@
`(let ((,n-temp (gensym))) `(let ((,n-temp (gensym)))
(,n-binds `(,,n-temp ,,name)) (,n-binds `(,,n-temp ,,name))
(setq ,name ,n-temp))))) (setq ,name ,n-temp)))))
`(let ,(names) `(let* ,(names)
(collect ((,n-binds)) (collect ((,n-binds))
,@(temp-binds) ,@(temp-binds)
(list 'let (,n-binds) (progn ,@body))))))) (list 'let* (,n-binds) (progn ,@body)))))))
;;;; DO-ANONYMOUS: ;;;; DO-ANONYMOUS:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment