help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: beep


From: Robert Marshall
Subject: Re: beep
Date: Wed, 15 Jan 2003 19:51:38 +0000
User-agent: Gnus/5.090012 (Oort Gnus v0.12) Emacs/21.3.50 (i686-pc-linux-gnu)

On 15 Jan 2003, rvf@hotpop.com wrote:

> McClain <McClain@uni.de> writes:
> 
>> How do I change or switch off this annoying
>> beep emacs plays for nearly everything?
>> 
> 
> put this in your .emacs:
> 
> ;; blink instead of beep when an error occurs
> (setq visible-bell t)
> 
Or alternatively, if you just want it to be less nearly everything

(setq ring-bell-function
      (lambda ()
        (unless (memq this-command
                      '(isearch-abort abort-recursive-edit exit-minibuffer
                                      keyboard-quit)) ;; add extra commands 
here!
          (ding))))

pinched off a ng somewhere

R
-- 
Take me to the world
A world that smiles
With streets instead of aisles


reply via email to

[Prev in Thread] Current Thread [Next in Thread]