summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authornicm <nicm>2019-09-25 19:05:59 +0000
committernicm <nicm>2019-09-25 19:05:59 +0000
commitbbd1032a2a6d76cacaaf729a4b465ec7ca24eef7 (patch)
treefa8ce58ef9d8e63b14b8f5d806f9578d36fccbbe /input.c
parente3359f8349cf972052604c089b5bab71f5e33095 (diff)
Style and line length nits.
Diffstat (limited to 'input.c')
-rw-r--r--input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/input.c b/input.c
index 2ff7a65d..d76216f4 100644
--- a/input.c
+++ b/input.c
@@ -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++;
}