summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-03-17 22:56:04 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-03-17 22:56:04 +0000
commitd8805af66bb876d762248d1695872eca3296f0e6 (patch)
tree7c152fcb1921509834e88c6ada100c1f969412a9 /tmux.h
parent46210344a62b079ff61435b978da41a0f92caf3a (diff)
On xterm 271 and later, put the terminal into SCL 5 and use DECCRA for
scrolling the region in panes (if the large region check isn't hit). With help from Ailin Nemui.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 5f2f3a44..8d0b680f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1472,8 +1472,9 @@ void tty_putc(struct tty *, u_char);
void tty_pututf8(struct tty *, const struct grid_utf8 *);
void tty_init(struct tty *, int, char *);
int tty_resize(struct tty *);
-int tty_set_size(struct tty *tty, u_int sx, u_int sy);
+int tty_set_size(struct tty *, u_int, u_int);
void tty_start_tty(struct tty *);
+void tty_set_version(struct tty *, u_int);
void tty_stop_tty(struct tty *);
void tty_set_title(struct tty *, const char *);
void tty_update_mode(struct tty *, int, struct screen *);