mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
bug in string-titlecase, string-cursor>=? doesn't take a string arg
This commit is contained in:
parent
9cf8a3ddf3
commit
5e4fa52185
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
|||
(let lp ((n (string-cursor-start str))
|
||||
(prev-caseless? #t)
|
||||
(result '()))
|
||||
(if (string-cursor>=? str n end)
|
||||
(if (string-cursor>=? n end)
|
||||
(list->string (reverse result))
|
||||
(let ((ch (string-cursor-ref str n))
|
||||
(n2 (string-cursor-next str n)))
|
||||
|
|
Loading…
Add table
Reference in a new issue