Style and line length nits.

This commit is contained in:
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++;
}