Mercurial > vim
changeset 28441:f4d2dcfd18ac v8.2.4745
patch 8.2.4745: using wrong flag for using bell in the terminal
Commit: https://github.com/vim/vim/commit/aae9762b2cbcae8dea454e1701d00ea0f614175e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Apr 13 14:28:07 2022 +0100
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.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 13 Apr 2022 15:30:05 +0200 |
parents | bf158b210d20 |
children | b045e372ab4c |
files | src/misc1.c src/terminal.c src/version.c |
diffstat | 3 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/misc1.c +++ b/src/misc1.c @@ -1095,11 +1095,10 @@ beep_flush(void) } /* - * Give a warning for an error. + * Give a warning for an error. "val" is one of the BO_ values, e.g., BO_OPER. */ void -vim_beep( - unsigned val) // one of the BO_ values, e.g., BO_OPER +vim_beep(unsigned val) { #ifdef FEAT_EVAL called_vim_beep = TRUE;