0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

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.
This commit is contained in:
Bram Moolenaar
2022-04-13 14:28:07 +01:00
parent 77771d33f4
commit aae9762b2c
3 changed files with 5 additions and 4 deletions

View File

@@ -3391,7 +3391,7 @@ handle_postponed_scrollback(term_T *term)
static int
handle_bell(void *user UNUSED)
{
vim_beep(BO_SH);
vim_beep(BO_TERM);
return 0;
}