diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-02-22 10:01:12 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-02-22 10:01:12 +0000 |
commit | 14dc2acc25b13c60a7d56eac31eed0d9ab75e339 (patch) | |
tree | cc9a9f0837f88442de26e941ecdadb03d8f65e50 | |
parent | 4b112c19f1c294110d3c406eb830fb998b7f743f (diff) | |
parent | 0414b1fc78c8c47af49ffe6305999df8592be24f (diff) | |
download | rtmux-14dc2acc25b13c60a7d56eac31eed0d9ab75e339.tar.gz rtmux-14dc2acc25b13c60a7d56eac31eed0d9ab75e339.tar.bz2 rtmux-14dc2acc25b13c60a7d56eac31eed0d9ab75e339.zip |
Merge branch 'obsd-master'
-rw-r--r-- | grid.c | 2 | ||||
-rw-r--r-- | key-string.c | 2 | ||||
-rw-r--r-- | window.c | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -39,7 +39,7 @@ const struct grid_cell grid_default_cell = { 0, 0, 8, 8, { { ' ' }, 0, 1, 1 } }; -const struct grid_cell_entry grid_default_entry = { +static const struct grid_cell_entry grid_default_entry = { 0, { .data = { 0, 8, 8, ' ' } } }; diff --git a/key-string.c b/key-string.c index b1329c1a..dc09ed98 100644 --- a/key-string.c +++ b/key-string.c @@ -232,7 +232,7 @@ key_string_lookup_string(const char *string) const char * key_string_lookup_key(key_code key) { - static char out[24]; + static char out[32]; char tmp[8]; u_int i; struct utf8_data ud; @@ -1506,6 +1506,7 @@ winlink_clear_flags(struct winlink *wl) } } +/* Shuffle window indexes up. */ int winlink_shuffle_up(struct session *s, struct winlink *wl) { |