I've been looking into adopting Carbon Emacs for use on my Mac, and the only stumbling block I've run into is the annoying scroll beep when you try to scroll past the end of the document. I've looked online but I can't seem to find what I should add to my .emacs that will stop it from beeping when scrolling. I don't want to silence it completely, just when scrolling. Any ideas?
Disable Carbon Emacs scroll beep
4.7k Views Asked by Kyle Cronin At
5
There are 5 best solutions below
0

Using the hints from the Emacs wiki AlarmBell page, this does it for me:
(defun my-bell-function ()
(unless (memq this-command
'(isearch-abort abort-recursive-edit exit-minibuffer
keyboard-quit mwheel-scroll down up next-line previous-line
backward-char forward-char))
(ding)))
(setq ring-bell-function 'my-bell-function)
If you don't know the name of a command, press C-h k
then the key/action you would like to get the name of.
Between Stephen Hassard's answer and Kipton Barros' comment:
seems to be the most concise, works on emacs 24.x, and answers the original question.