xpressn.c, whitespace cleanup

This commit is contained in:
rlar 2013-11-07 21:42:02 +01:00
parent 1ac45bfd57
commit ef3580d590
1 changed files with 4 additions and 4 deletions

View File

@ -1347,10 +1347,10 @@ formula(tdico *dico, const char *s, const char *s_end, bool *perror)
accu[i-1] = 0.0; accu[i-1] = 0.0;
oper[i] = ' '; /* reset intermediates */ oper[i] = ' '; /* reset intermediates */
} else { } else {
/* not yet speed optimized! */ /* not yet speed optimized! */
accu[i] = operate(oper[i], accu[i], accu[i - 1]); accu[i] = operate(oper[i], accu[i], accu[i-1]);
accu[i - 1] = 0.0; accu[i-1] = 0.0;
oper[i] = ' '; /* reset intermediates */ oper[i] = ' '; /* reset intermediates */
} }
} }
oper[level] = c; oper[level] = c;