diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-24 14:13:14 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-24 14:13:14 -0400 |
commit | b761569b3aabfb9cd2034d737d4223de534d3dcb (patch) | |
tree | 422cf96fb9fcc08307ecccccc190230c778a8e36 /parser.c | |
parent | 7f64da46ffe3b2e2a2b46a3dd2effc4f4f7d45da (diff) |
single-letter vars, size & append, string indexing
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -404,8 +404,10 @@ variable **iparse(instance *it, const char *s) // variable or function if (isalpha(s[offset])) { size_t end = offset + 1; - while (isalnum(s[end])) - end++; + if (!isupper(s[offset])) { + while (isalnum(s[end])) + end++; + } char *name = strnclone(s + offset, end - offset); ops[ooffset++] = igetvar(it, name); free(name); |