aboutsummaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-04-24 14:13:14 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-04-24 14:13:14 -0400
commitb761569b3aabfb9cd2034d737d4223de534d3dcb (patch)
tree422cf96fb9fcc08307ecccccc190230c778a8e36 /parser.c
parent7f64da46ffe3b2e2a2b46a3dd2effc4f4f7d45da (diff)
single-letter vars, size & append, string indexing
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/parser.c b/parser.c
index 2ae390b..279bb6e 100644
--- a/parser.c
+++ b/parser.c
@@ -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);