Make env struct transparent.

svn: r14857
This commit is contained in:
Sam Tobin-Hochstadt 2009-05-18 22:17:32 +00:00
parent 7a24d39348
commit ef095c931a

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)))