mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Style and line length nits.
This commit is contained in:
parent
e3359f8349
commit
bbd1032a2a
3
input.c
3
input.c
@ -923,7 +923,8 @@ input_parse_buffer(struct window_pane *wp, u_char *buf, size_t len)
|
|||||||
ictx->ch > itr->last) {
|
ictx->ch > itr->last) {
|
||||||
itr = ictx->state->transitions;
|
itr = ictx->state->transitions;
|
||||||
while (itr->first != -1 && itr->last != -1) {
|
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;
|
break;
|
||||||
itr++;
|
itr++;
|
||||||
}
|
}
|
||||||
|
@ -269,7 +269,7 @@ window_tree_cmp_pane(const void *a0, const void *b0)
|
|||||||
result = (*a)->id - (*b)->id;
|
result = (*a)->id - (*b)->id;
|
||||||
}
|
}
|
||||||
if (window_tree_sort->reversed)
|
if (window_tree_sort->reversed)
|
||||||
result *= -1;
|
result = -result;
|
||||||
return (result);
|
return (result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user