xpressn.c, formula(), #5/6 whitespace and indentation
This commit is contained in:
parent
577352e6bb
commit
a805fe6b56
|
|
@ -1003,7 +1003,6 @@ formula(dico_t *dico, const char *s, const char *s_end, bool *perror)
|
|||
fu = 0;
|
||||
} else if (alfa(c)) {
|
||||
const char *s_next = fetchid(s, s_end);
|
||||
{
|
||||
fu = keyword(fmathS, s, s_next); /* numeric function? */
|
||||
if (fu > 0) {
|
||||
state = S_init; /* S_init means: ignore for the moment */
|
||||
|
|
@ -1015,7 +1014,6 @@ formula(dico_t *dico, const char *s, const char *s_end, bool *perror)
|
|||
u = fetchnumentry(dico, spice_dstring_value(&tstr), &error);
|
||||
state = S_atom;
|
||||
}
|
||||
}
|
||||
s = s_next;
|
||||
} else if (((c == '.') || ((c >= '0') && (c <= '9')))) {
|
||||
u = fetchnumber(dico, &s, &error);
|
||||
|
|
|
|||
Loading…
Reference in New Issue