update-counts: Fix a really dumb bug in logical-equal? that

caused huge time blowup.

svn: r4259
This commit is contained in:
Sam Tobin-Hochstadt 2006-09-06 16:50:50 +00:00
parent 85cb2252f4
commit b1bc4714d5

View File

@ -59,7 +59,7 @@
lst)))
(define (logical-equal? a b)
(or (equal? a b) #t
(or (equal? a b)
(and
;; error checking
(list? a)