aboutsummaryrefslogtreecommitdiff
path: root/src/unicode.c
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-11-28 20:39:43 +0000
committerGinger Bill <bill@gingerbill.org>2016-11-28 20:39:43 +0000
commit598dab5bc4fb2836c8f2a6cad757dcb3760a895f (patch)
tree957f92585cae2e41bee93ce0b9d493b5178a0f54 /src/unicode.c
parentcbb70c78731b9d928508a52180a186b178d30a5e (diff)
#rune "" to ''; Remove infix and postfix call notation
Diffstat (limited to 'src/unicode.c')
-rw-r--r--src/unicode.c2
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;