removed some bogus stuff in combinator code

svn: r2166
This commit is contained in:
Eli Barzilay 2006-02-07 22:11:06 +00:00
parent 78581eef66
commit 86e91af13d

View File

@ -1328,11 +1328,11 @@
(make-generic-combination :init #f :combine (lambda (x y) x)))
(define* generic-and-combination
(make-generic-combination
:init #t :combine (lambda (x y) (and x y))
:init #t
:control (lambda (loop val this tail) (and val (loop (this) tail)))))
(define* generic-or-combination
(make-generic-combination
:init #f :combine (lambda (x y) (and x y))
:init #f
:control (lambda (loop val this tail) (or (this) (loop #f tail)))))
;;>>...