From 6ec67846ffadb5bd1be13d5a7ea3abcf67f1c536 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sat, 1 Jan 2022 17:43:11 +0100 Subject: Redesign function names --- src/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parse.c') 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)) { -- cgit v1.2.3