.emacs.d/site-lisp/wtk_common.el: Disable the system bell (\a)
authorW. Trevor King <wking@tremily.us>
Sun, 30 Mar 2014 01:06:24 +0000 (18:06 -0700)
committerW. Trevor King <wking@tremily.us>
Sun, 30 Mar 2014 23:32:46 +0000 (16:32 -0700)
I enable the system bell (xset b) to get IRC notifications from irssi,
but I don't want Emacs beeping at me if I try and move outside the
buffer ;).

src/.emacs.d/site-lisp/wtk_common.el

index cefe9f61a96f0a1b7e3d7e9abead0d68124ff904..f0428878d93c63dc9a0476f0e5fcb05bfc9e1713 100644 (file)
@@ -12,3 +12,6 @@
 
 ; Make scripts executable on Save (saves having to do the chmod every time)
 (add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
+
+; Disable the bell (\a, ^G) completely
+(setq ring-bell-function 'ignore)