Browse Source

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

pre-master-46
mhx 11 years ago
committed by rlar
parent
commit
a324d86878
  1. 2
      src/frontend/inpcom.c

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

Loading…
Cancel
Save