diff options
author | nicm <nicm> | 2015-05-12 15:27:46 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-05-12 15:27:46 +0000 |
commit | e958db09a72c2308d3edc8384be02714eb068ae7 (patch) | |
tree | f2034da50604c6cfbd35486ffdba9f674d12f7fa /options-table.c | |
parent | b833fabeb2334c44406bd54ff7cc804d20c546f6 (diff) | |
download | rtmux-e958db09a72c2308d3edc8384be02714eb068ae7.tar.gz rtmux-e958db09a72c2308d3edc8384be02714eb068ae7.tar.bz2 rtmux-e958db09a72c2308d3edc8384be02714eb068ae7.zip |
Add bell-action "other" to pass through bells in all windows except the
current, suggested by Jan ONDREJ.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 9869e14f..44d36dca 100644 --- a/options-table.c +++ b/options-table.c @@ -49,7 +49,7 @@ const char *options_table_status_position_list[] = { "top", "bottom", NULL }; const char *options_table_bell_action_list[] = { - "none", "any", "current", NULL + "none", "any", "current", "other", NULL }; /* Server options. */ |