diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-05-01 14:01:12 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-05-01 14:01:12 +0100 |
commit | fe4ef307b736bae23068a4569c30a6b26021cad9 (patch) | |
tree | 57b6e002bd648b0bcdaba57bd1949ca4a70c4c18 /tty.c | |
parent | 2b9f8ae485b05a87f22865f4662089f1f6e1e0e7 (diff) | |
parent | 87be2da4e1fca4a1815420d557b6b7d381b60ee4 (diff) | |
download | rtmux-fe4ef307b736bae23068a4569c30a6b26021cad9.tar.gz rtmux-fe4ef307b736bae23068a4569c30a6b26021cad9.tar.bz2 rtmux-fe4ef307b736bae23068a4569c30a6b26021cad9.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -42,6 +42,8 @@ static int tty_same_colours(const struct grid_cell *, const struct grid_cell *); static int tty_is_fg(const struct grid_cell *, int); static int tty_is_bg(const struct grid_cell *, int); +static int tty_client_ready(struct client *, struct window_pane *); + void tty_set_italics(struct tty *); int tty_try_256(struct tty *, u_char, const char *); int tty_try_rgb(struct tty *, const struct grid_cell_rgb *, const char *); @@ -776,7 +778,7 @@ tty_draw_line(struct tty *tty, const struct window_pane *wp, tty_update_mode(tty, tty->mode, s); } -int +static int tty_client_ready(struct client *c, struct window_pane *wp) { if (c->session == NULL || c->tty.term == NULL) |