remove type check guards in compare function
This commit is contained in:
parent
5e8c4af84b
commit
2e35f03f35
|
@ -106,11 +106,7 @@
|
|||
id)))
|
||||
|
||||
(define (compare sym1 sym2)
|
||||
(if (symbol? sym1)
|
||||
(if (symbol? sym2)
|
||||
(identifier=? use-env sym1 use-env sym2)
|
||||
#f)
|
||||
#f))
|
||||
(identifier=? use-env sym1 use-env sym2))
|
||||
|
||||
(f expr rename compare)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue