diff options
author | 2015-09-02 17:43:25 +0000 | |
---|---|---|
committer | 2015-09-02 17:43:25 +0000 | |
commit | e42da932f4c82db5b44b4a826372ee971d682de4 (patch) | |
tree | 60bf5105915651633d23a4fa53a60f72a21544bb /usr.bin/tmux/tty.c | |
parent | We no longer need the terminal service class, so don't bother asking for it. (diff) | |
download | wireguard-openbsd-e42da932f4c82db5b44b4a826372ee971d682de4.tar.xz wireguard-openbsd-e42da932f4c82db5b44b4a826372ee971d682de4.zip |
A one line helper function is a little silly.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index adcfe46391e..7e6b07e5950 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.186 2015/09/02 17:37:54 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.187 2015/09/02 17:43:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1712,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); -} |