From 77771d33f44bfb9f75eb857bd2f2bb4c2860cac3 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 13 Apr 2022 11:47:25 +0100 Subject: patch 8.2.4744: a terminal window can't use the bell Problem: A terminal window can't use the bell. Solution: Add bell support for the terminal window. (closes #10178) --- src/gui_w32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui_w32.c') diff --git a/src/gui_w32.c b/src/gui_w32.c index d1cc06d5b9..35cb2d26a2 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1696,7 +1696,7 @@ gui_mch_haskey(char_u *name) void gui_mch_beep(void) { - MessageBeep(MB_OK); + MessageBeep((UINT)-1); } /* * Invert a rectangle from row r, column c, for nr rows and nc columns. -- cgit v1.2.3