|
|
@ -4070,7 +4070,7 @@ search_identifier(char *str, const char *identifier, char *str_begin) |
|
|
else |
|
|
else |
|
|
before = '\0'; |
|
|
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)]; |
|
|
char after = str[strlen(identifier)]; |
|
|
if (is_arith_char(after) || isspace(after) || strchr(",}", after)) |
|
|
if (is_arith_char(after) || isspace(after) || strchr(",}", after)) |
|
|
return str; |
|
|
return str; |
|
|
|