all string comparison functions were broken for 1 and 3+ args.

fixed.
This commit is contained in:
Abdulaziz Ghuloum 2008-11-15 10:59:01 -05:00
parent fc80aaae37
commit eb97ae0569
2 changed files with 4 additions and 4 deletions

View File

@ -204,9 +204,9 @@
(f (cdr s*))]
[else
(die who "not a string"
(car s*))]))))
(die who "not a string" s2))])))
(die who "not a string" s1)))
(car s*))])))
(die who "not a string" s2)))]))
(die who "not a string0" s1))))
(define ($string<? s1 s2)
(let ([n1 ($string-length s1)]

View File

@ -1 +1 @@
1676
1677