aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2015-09-06 20:47:50 +0100
committerThomas Adam <thomas@xteddy.org>2015-09-06 20:47:50 +0100
commit76688d204071b76fd3388e46e944e4b917c09625 (patch)
treeb6c7920003106991bbb8db46a432e47b16429c94 /tty.c
parent2ebef95994953e49ae84862a65f9ee649a72e200 (diff)
parentaceae73b9a401c0b124a3534079e9c0d998f0dbd (diff)
downloadrtmux-76688d204071b76fd3388e46e944e4b917c09625.tar.gz
rtmux-76688d204071b76fd3388e46e944e4b917c09625.tar.bz2
rtmux-76688d204071b76fd3388e46e944e4b917c09625.zip
Merge branch 'obsd-master'
Conflicts: cfg.c tmux.c
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tty.c b/tty.c
index 374fb8c6..c4dfde1d 100644
--- a/tty.c
+++ b/tty.c
@@ -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;
@@ -254,14 +253,6 @@ tty_start_tty(struct tty *tty)
}
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)
{
struct winsize ws;
@@ -1721,9 +1712,3 @@ tty_default_colours(struct grid_cell *gc, const struct window_pane *wp)
}
}
}
-
-void
-tty_bell(struct tty *tty)
-{
- tty_putcode(tty, TTYC_BEL);
-}