We no longer need the terminal service class, so don't bother asking for it.

This commit is contained in:
nicm
2015-09-02 17:37:54 +00:00
parent a45164f2e0
commit 8121127606
3 changed files with 0 additions and 81 deletions

9
tty.c
View File

@ -233,7 +233,6 @@ tty_start_tty(struct tty *tty)
tty->flags |= TTY_FOCUS;
tty_puts(tty, "\033[?1004h");
}
tty_puts(tty, "\033[c");
}
tty->cx = UINT_MAX;
@ -253,14 +252,6 @@ tty_start_tty(struct tty *tty)
tty->mouse_drag_release = NULL;
}
void
tty_set_class(struct tty *tty, u_int class)
{
if (tty->class != 0)
return;
tty->class = class;
}
void
tty_stop_tty(struct tty *tty)
{