diff options
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 2 |
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)) { |