utf8-srfi-13 string-index-right treats bounds differently to srfi-13
(use srfi-13)
(string-index-right "foo" #\@ 0 0)
;; => #f
(use utf8-srfi-13)
(string-index-right "foo" #\@ 0 0)
Error: index out of range
"foo"
-1
Call history:
<syntax> (string-index-right "foo" #\@ 0 0)
<eval> (string-index-right "foo" #\@ 0 0) <--
Change History (3)
Component: |
unknown →
extensions
|
Keywords: |
utf8 srfi-13 added
|
Owner: |
set to Alex Shinn
|
Status: |
new →
assigned
|
Estimated difficulty: |
→ medium
|
Resolution: |
→ fixed
|
Status: |
assigned →
closed
|
This is not a problem anymore.