aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 17:43:11 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 17:43:11 +0100
commit6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536 (patch)
treebaac675ac4183bf4927403391dd54ea5069af4a5 /src/parse.c
parent8e3ed7630c7383869b6e16b494d4288c4e094dd3 (diff)
downloaduwu-lang-6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536.tar.xz
Redesign function names
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index 66a90a3..bb9bf81 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -224,7 +224,7 @@ static bool parse_function(ParseState *state, char c)
printf("%s\n", __FUNCTION__);
#endif
- if (c == '\"' || c == '$' || c == ':' || c == ',' || c == '&' || c == '(' || c == ')' || isdigit(c))
+ if (c == '\"' || c == '$' || c == '.' || c == ',' || c == '&' || c == '(' || c == ')' || isdigit(c))
return false;
if (! isspace(c)) {