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

Made ONCE-ONLY differently twisted so that it still implements LET* semantics,

but properly deals with things like (once-only ((a (somefun a))) ...).
parent ade59ea0
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.10 1991/04/24 21:04:12 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extensions.lisp,v 1.11 1991/05/04 12:29:15 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -309,17 +309,20 @@ ...@@ -309,17 +309,20 @@
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." temporary variable."
(collect ((gensym-binds) (iterate frob
(temp-binds)) ((specs specs)
(dolist (spec specs) (body body))
(when (/= (length spec) 2) (if (null specs)
(error "Malformed Once-Only binding spec: ~S." spec)) `(progn ,@body)
(let ((name (first spec)) (let ((spec (first specs)))
(exp (second spec))) (when (/= (length spec) 2)
(gensym-binds `(,name (gensym "OO-"))) (error "Malformed Once-Only binding spec: ~S." spec))
(temp-binds ``(,,name ,,exp)))) (let ((name (first spec))
`(let ,(gensym-binds) (exp-temp (gensym)))
(list 'let* (list ,@(temp-binds)) (progn ,@body))))) `(let ((,exp-temp ,(second spec))
(,name (gensym "OO-")))
`(let ((,,name ,,exp-temp))
,,(frob (rest specs) 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