original commit: 0edb2ad19d46400087c8bed0e333ee6e6b8dc1ea
This commit is contained in:
Matthew Flatt 1999-08-03 17:56:32 +00:00
parent 02ae494608
commit 168e7abd48

View File

@ -306,12 +306,11 @@
(eq? x y)))
(define (symbol=? x y)
(lambda (x y)
(unless (and (symbol? x)
(symbol? y))
(raise-type-error 'symbol=? "symbol"
(if (symbol? x) y x)))
(eq? x y)))
(unless (and (symbol? x)
(symbol? y))
(raise-type-error 'symbol=? "symbol"
(if (symbol? x) y x)))
(eq? x y))
(define cons? (lambda (x) (pair? x)))
(define empty? (lambda (x) (null? x)))