commit | aae9762b2cbcae8dea454e1701d00ea0f614175e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Apr 13 14:28:07 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Apr 13 14:28:07 2022 +0100 |
tree | 9400bbca00947b43ab6785c3eb15190869556ecb | |
parent | 77771d33f44bfb9f75eb857bd2f2bb4c2860cac3 [diff] [blame] |
patch 8.2.4745: using wrong flag for using bell in the terminal Problem: Using wrong flag for using bell in the terminal. Solution: Change to use BO_TERM.
diff --git a/src/terminal.c b/src/terminal.c index 9f9e84a..658d5e0 100644 --- a/src/terminal.c +++ b/src/terminal.c
@@ -3391,7 +3391,7 @@ static int handle_bell(void *user UNUSED) { - vim_beep(BO_SH); + vim_beep(BO_TERM); return 0; }