summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-09-02 17:37:55 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-09-02 17:37:55 +0000
commitf7babac231fb91acf423e5a8a7a21cdf4bd7362b (patch)
treee616c2ca942ce365e017ad84579e403133bdeae1 /usr.bin/tmux/tmux.h
parent62f0733a4294513d5a7c4212c457735e20916c9f (diff)
We no longer need the terminal service class, so don't bother asking for it.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 4e7f6f53db7..18344e1773b 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.552 2015/09/01 11:13:39 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.553 2015/09/02 17:37:54 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1082,9 +1082,7 @@ LIST_HEAD(tty_terms, tty_term);
struct tty {
struct client *client;
-
char *path;
- u_int class;
u_int sx;
u_int sy;
@@ -1564,7 +1562,6 @@ void tty_putn(struct tty *, const void *, size_t, u_int);
int 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_stop_tty(struct tty *);
void tty_set_title(struct tty *, const char *);