aboutsummaryrefslogtreecommitdiff
path: root/core/strings
diff options
context:
space:
mode:
Diffstat (limited to 'core/strings')
-rw-r--r--core/strings/strings.odin4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/strings/strings.odin b/core/strings/strings.odin
index b050262f0..e99a1bfb4 100644
--- a/core/strings/strings.odin
+++ b/core/strings/strings.odin
@@ -1031,7 +1031,7 @@ Returns:
*/
@private
_split_iterator :: proc(s: ^string, sep: string, sep_save: int) -> (res: string, ok: bool) {
- m := index(s^, sep)
+ m: int
if sep == "" {
if len(s) == 0 {
m = -1
@@ -1039,6 +1039,8 @@ _split_iterator :: proc(s: ^string, sep: string, sep_save: int) -> (res: string,
_, w := utf8.decode_rune_in_string(s^)
m = w
}
+ } else {
+ m = index(s^, sep)
}
if m < 0 {
// not found