fix bug in case-sens vs. case-insens find-string for text%
svn: r14460
This commit is contained in:
parent
285dae4935
commit
28ce21c23b
|
@ -3461,7 +3461,7 @@
|
|||
|
||||
(let* ([n (sub1 n)]
|
||||
[c (string-ref text i)]
|
||||
[c (if case-sens? (char-foldcase c) c)]
|
||||
[c (if case-sens? c (char-foldcase c))]
|
||||
[s (let loop ([s s])
|
||||
(if (and (not (= beyond s))
|
||||
(not (char=? (string-ref str (+ s direction)) c)))
|
||||
|
|
Loading…
Reference in New Issue
Block a user