Style and line length nits.

pull/1924/head
nicm 2019-09-25 19:05:59 +00:00
parent e3359f8349
commit bbd1032a2a
2 changed files with 3 additions and 2 deletions

View File

@ -923,7 +923,8 @@ input_parse_buffer(struct window_pane *wp, u_char *buf, size_t len)
ictx->ch > itr->last) {
itr = ictx->state->transitions;
while (itr->first != -1 && itr->last != -1) {
if (ictx->ch >= itr->first && ictx->ch <= itr->last)
if (ictx->ch >= itr->first &&
ictx->ch <= itr->last)
break;
itr++;
}

View File

@ -269,7 +269,7 @@ window_tree_cmp_pane(const void *a0, const void *b0)
result = (*a)->id - (*b)->id;
}
if (window_tree_sort->reversed)
result *= -1;
result = -result;
return (result);
}