inpcom.c, inp_remove_ws(), #5/7, simplify condition

This commit is contained in:
rlar 2014-12-28 20:05:41 +01:00
parent 2c200ae453
commit cf6582ea8c
1 changed files with 1 additions and 1 deletions

View File

@ -2227,7 +2227,7 @@ inp_remove_ws(char *s)
curr++;
if (isspace(*curr)) {
curr = skip_ws(curr);
if (*curr != '\0' && *curr != '=' && ((is_expression && !is_arith_char(*curr) && *curr != ',') || (!is_expression)))
if (*curr != '\0' && *curr != '=' && ((!is_arith_char(*curr) && *curr != ',') || (!is_expression)))
big_buff[big_buff_index++] = ' ';
}
}