From e3ff6d28b6079409d21c8da01b0dd60cafc78252 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 d4b97dc7..2e878268 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(); } -- 2.11.4.GIT