Fixed bug in type of MAP & FOR-EACH.
This commit is contained in:
parent
3f23ce432c
commit
85630af86a
|
@ -175,8 +175,8 @@
|
|||
(proc (:value :value &opt (proc (:value :value) :value)) :value))
|
||||
|
||||
;; Extended from their R4RS definitions.
|
||||
(map (proc ((proc (:value) :value) &rest :value) :value))
|
||||
(for-each (proc ((proc (:value) :values) &rest :value) :unspecific))
|
||||
(map (proc ((proc (:value &rest :value) :value) :value &rest :value) :value))
|
||||
(for-each (proc ((proc (:value &rest :value) :values) :value &rest :value) :unspecific))
|
||||
|
||||
;; R4RS exports
|
||||
(cons (proc (:value :value) :pair))
|
||||
|
|
Loading…
Reference in New Issue