A one line helper function is a little silly.

pull/121/head
nicm 2015-09-02 17:43:25 +00:00
parent 8121127606
commit 38e3baab2a
3 changed files with 2 additions and 9 deletions

View File

@ -174,7 +174,7 @@ alerts_check_bell(struct session *s, struct winlink *wl)
(action == BELL_OTHER &&
c->session->curw->window != w) ||
action == BELL_ANY)
tty_bell(&c->tty);
tty_putcode(&c->tty, TTYC_BEL);
continue;
}
if (action == BELL_CURRENT && c->session->curw->window == w)
@ -258,6 +258,6 @@ alerts_ring_bell(struct session *s)
TAILQ_FOREACH(c, &clients, entry) {
if (c->session == s && !(c->flags & CLIENT_CONTROL))
tty_bell(&c->tty);
tty_putcode(&c->tty, TTYC_BEL);
}
}

1
tmux.h
View File

@ -1596,7 +1596,6 @@ void tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
void tty_cmd_setselection(struct tty *, const struct tty_ctx *);
void tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
void tty_bell(struct tty *);
/* tty-term.c */
extern struct tty_terms tty_terms;

6
tty.c
View File

@ -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);
}