Browse Source

inp_modify_exp(), cleanup #15/17, use postincrement

pre-master-46
rlar 12 years ago
parent
commit
b37db50aed
  1. 4
      src/frontend/inpcom.c

4
src/frontend/inpcom.c

@ -5559,8 +5559,8 @@ inp_modify_exp(char* expr)
while (*s != ')') {
buf[i++] = *s++;
}
buf[i] = *s++;
buf[i+1] = '\0';
buf[i++] = *s++;
buf[i] = '\0';
wl->wl_word = copy(buf);
} else {
while (isalnum(*s) ||

Loading…
Cancel
Save