Fix some indentation and dead assignments.

This commit is contained in:
nicm
2019-05-12 18:16:33 +00:00
parent a131655235
commit 00f19b7f91
6 changed files with 22 additions and 20 deletions

View File

@ -57,10 +57,8 @@ style_parse(struct style *sy, const struct grid_cell *base, const char *in)
style_copy(&saved, sy);
do {
while (*in != '\0' && strchr(delimiters, *in) != NULL) {
while (*in != '\0' && strchr(delimiters, *in) != NULL)
in++;
end--;
}
if (*in == '\0')
break;