inp_modify_exp(), cleanup #10/17, use tprintf()

This commit is contained in:
rlar 2014-11-02 11:33:10 +01:00
parent 2992d6b416
commit b023f36dbb
1 changed files with 3 additions and 9 deletions

View File

@ -5521,9 +5521,7 @@ inp_modify_exp(char* expr)
actchar = '^';
str_ptr++;
}
buf[0] = actchar;
buf[1] = '\0';
wl->wl_word = copy(buf);
wl->wl_word = tprintf("%c", actchar);
str_ptr++;
if (actchar == ')')
ustate = S_value;
@ -5545,9 +5543,7 @@ inp_modify_exp(char* expr)
wl->wl_word = copy_substring(beg, str_ptr);
ustate = S_operator;
} else if ((actchar == '-') && (ustate == S_value)) {
buf[0] = actchar;
buf[1] = '\0';
wl->wl_word = copy(buf);
wl->wl_word = tprintf("%c", actchar);
str_ptr++;
ustate = S_operator;
} else if ((actchar == '-') && (ustate == S_operator)) {
@ -5618,9 +5614,7 @@ inp_modify_exp(char* expr)
str_ptr++;
} else { /* strange char */
printf("Preparing expression for numparam\nWhat is this?\n%s\n", str_ptr);
buf[0] = *str_ptr++;
buf[1] = '\0';
wl->wl_word = copy(buf);
wl->wl_word = tprintf("%c", *str_ptr++);
}
}