diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-11-28 20:39:43 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-11-28 20:39:43 +0000 |
| commit | 598dab5bc4fb2836c8f2a6cad757dcb3760a895f (patch) | |
| tree | 957f92585cae2e41bee93ce0b9d493b5178a0f54 /src/unicode.c | |
| parent | cbb70c78731b9d928508a52180a186b178d30a5e (diff) | |
#rune "" to ''; Remove infix and postfix call notation
Diffstat (limited to 'src/unicode.c')
| -rw-r--r-- | src/unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unicode.c b/src/unicode.c index 5c9f91f46..e4bf28be8 100644 --- a/src/unicode.c +++ b/src/unicode.c @@ -42,10 +42,10 @@ bool rune_is_whitespace(Rune r) { bool is_string_an_identifier(String s) { + isize offset = 0; if (s.len < 1) { return false; } - isize offset = 0; while (offset < s.len) { bool ok = false; Rune r = -1; |