Was thinking of doing some cleanups here, but at the very least I can

get rid of this useless remove, since it's just going to overwrite it
anyway if we don't remove it first.
This commit is contained in:
Stevie Strickland 2008-07-13 06:12:06 -04:00
parent 9f6427ac34
commit e0bad1987d

View File

@ -62,7 +62,6 @@
;; given a set of free variables, remove bound, add bound ...
(define (fix-bound vs bound)
(define vs* (hash-map* (lambda (k v) v) vs))
(hash-remove! vs* bound)
(hash-set! vs* bound Dotted)
vs*)