Small renamer for clarity.

This commit is contained in:
mainzelm 2002-04-04 08:09:15 +00:00
parent 4c19b80a6e
commit 6f083d7205
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@
(define (add-cells exp vars)
(do ((vars vars (cdr vars))
(cells '() (if (assigned? (car vars))
(cons (make-cell (car vars)) cells)
(cons (make-make-cell (car vars)) cells)
cells)))
((null? vars)
(if (null? cells)
@ -272,7 +272,7 @@
;----------------
; Cell manipulation calls.
(define (make-cell var)
(define (make-make-cell var)
(make-node operator/set!
(list 'set!
var