summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-11-22 14:41:11 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-11-22 14:41:11 +0000
commit260419f48efccd1ca80cd00168ef2471e765e8b6 (patch)
tree37c3e6771beaeeebce46dfaaf2d39615d96061ac /tmux.h
parent0679eb6a6d6bab129264784009e70333b34ca6a8 (diff)
Put helper function back, will be needed in a bit.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 2a36c2da..98677f78 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1193,7 +1193,7 @@ struct tty {
struct client *client;
char *path;
- u_int xterm_version;
+ u_int class;
u_int sx;
u_int sy;
@@ -1637,8 +1637,8 @@ void tty_pututf8(struct tty *, const struct grid_utf8 *);
void tty_init(struct tty *, struct client *, int, char *);
int tty_resize(struct tty *);
int tty_set_size(struct tty *, u_int, u_int);
+void tty_set_class(struct tty *, 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 *);