Make env struct transparent.

svn: r14857

original commit: ef095c931a30c98adf4dc2f326780f62173be9bd
This commit is contained in:
Sam Tobin-Hochstadt 2009-05-18 22:17:32 +00:00
parent 3a21f89ecd
commit d6a1b098ca

View File

@ -20,7 +20,7 @@
with-dotted-env/extend)
;; eq? has the type of equal?, and l is an alist (with conses!)
(r:d-s/c env ([eq? (any/c any/c . -> . boolean?)] [l (listof pair?)]))
(r:d-s/c env ([eq? (any/c any/c . -> . boolean?)] [l (listof pair?)]) #:transparent)
(define (env-vals e)
(map cdr (env-l e)))