diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 5e1d6d471..8fbbeacd3 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -4070,7 +4070,7 @@ search_identifier(char *str, const char *identifier, char *str_begin) else before = '\0'; - if (is_arith_char(before) || isspace(before) || strchr(",{", before)) { + if (is_arith_char(before) || isspace(before) || strchr("=,{", before)) { char after = str[strlen(identifier)]; if (is_arith_char(after) || isspace(after) || strchr(",}", after)) return str;