mirror of
https://github.com/tmux/tmux.git
synced 2025-12-25 02:16:15 +00:00
Pass bell through from any window.
This commit is contained in:
9
local.c
9
local.c
@@ -1,4 +1,4 @@
|
||||
/* $Id: local.c,v 1.8 2007-09-28 22:47:21 nicm Exp $ */
|
||||
/* $Id: local.c,v 1.9 2007-09-29 09:53:25 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@@ -393,6 +393,13 @@ local_output(struct buffer *b, size_t size)
|
||||
}
|
||||
log_warnx("carriage_return not supported");
|
||||
break;
|
||||
case '\007': /* BEL */
|
||||
if (bell != NULL) {
|
||||
local_putp(bell);
|
||||
break;
|
||||
}
|
||||
log_warnx("bell not supported");
|
||||
break;
|
||||
case '\010': /* BS */
|
||||
if (cursor_left != NULL) {
|
||||
local_putp(cursor_left);
|
||||
|
||||
Reference in New Issue
Block a user