From ddfeb8cac3ca64375b98f5c17d270b2753bd1a5f Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Mon, 11 Feb 2008 20:50:48 +0100 Subject: [PATCH] Implement bell The bell uses NSBeep() and can hence be changed in the System Preferences. Note that the visual bell is not yet implemented. --- src/MacVim/gui_macvim.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MacVim/gui_macvim.m b/src/MacVim/gui_macvim.m index d4b97dc7a9..2e8782684b 100644 --- a/src/MacVim/gui_macvim.m +++ b/src/MacVim/gui_macvim.m @@ -1193,6 +1193,7 @@ gui_mch_adjust_charheight(void) void gui_mch_beep(void) { + NSBeep(); }