inpcom.c, allow `temper' to be recognised when preceded by '='

This commit is contained in:
mhx 2015-08-16 14:44:22 +02:00 committed by rlar
parent 45bec4b8eb
commit a324d86878
1 changed files with 1 additions and 1 deletions

View File

@ -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;