all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How to turn off the sound
@ 2007-02-27 19:11 tommy
  2007-02-28  0:04 ` Matthew Flaschen
  2007-02-28  0:31 ` David Hansen
  0 siblings, 2 replies; 7+ messages in thread
From: tommy @ 2007-02-27 19:11 UTC (permalink / raw)
  To: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 99 bytes --]

How to turn off the beer when i use mouse roll to the buffer? beer when at
the top and the bottom!

[-- Attachment #1.2: Type: text/html, Size: 103 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
  2007-02-27 19:11 tommy
@ 2007-02-28  0:04 ` Matthew Flaschen
  2007-02-28  0:31 ` David Hansen
  1 sibling, 0 replies; 7+ messages in thread
From: Matthew Flaschen @ 2007-02-28  0:04 UTC (permalink / raw)
  To: emacs


[-- Attachment #1.1: Type: text/plain, Size: 301 bytes --]

tommy wrote:
> How to turn off the beer when i use mouse roll to the buffer? beer when at
> the top and the bottom!

I chose to turn off the system beep completely at a lower level, through
the KDE options.  There may be a way to disable the emacs beeps
specifically, though

Matt Flaschen


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 254 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
  2007-02-27 19:11 tommy
  2007-02-28  0:04 ` Matthew Flaschen
@ 2007-02-28  0:31 ` David Hansen
  1 sibling, 0 replies; 7+ messages in thread
From: David Hansen @ 2007-02-28  0:31 UTC (permalink / raw)
  To: help-gnu-emacs

On Tue, 27 Feb 2007 21:11:33 +0200 tommy wrote:

> How to turn off the beer when i use mouse roll to the buffer? beer when
> at the top and the bottom!

Emacs serves beer when i use the mouse for scrolling?!  Is it good
beer or one of these terrible American light beers (that would be
worth a bug report...)?

If we are at it:  anyone written a red wine or gin tonic mode?

Prost!

David

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
       [not found] <mailman.195.1172620159.7795.help-gnu-emacs@gnu.org>
@ 2007-02-28  6:44 ` David Kastrup
  2007-02-28 16:05   ` Sandesh
  0 siblings, 1 reply; 7+ messages in thread
From: David Kastrup @ 2007-02-28  6:44 UTC (permalink / raw)
  To: help-gnu-emacs

tommy <toxiufeng@gmail.com> writes:

> How to turn off the beer when i use mouse roll to the buffer? beer
> when at the top and the bottom!

M-x customize-variable RET visible-bell RET

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
  2007-02-28  6:44 ` How to turn off the sound David Kastrup
@ 2007-02-28 16:05   ` Sandesh
  2007-02-28 17:24     ` Taylor Venable
  0 siblings, 1 reply; 7+ messages in thread
From: Sandesh @ 2007-02-28 16:05 UTC (permalink / raw)
  To: help-gnu-emacs

On Feb 28, 11:44 am, David Kastrup <d...@gnu.org> wrote:
> tommy <toxiuf...@gmail.com> writes:
> > How to turn off the beer when i use mouse roll to the buffer? beer
> > when at the top and the bottom!
>
> M-x customize-variable RET visible-bell RET
>
> --
> David Kastrup, Kriemhildstr. 15, 44793 Bochum

I dont want any visible-bell or beep, how can that be done ?

Sandesh Hegde

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
  2007-02-28 16:05   ` Sandesh
@ 2007-02-28 17:24     ` Taylor Venable
  2007-02-28 20:23       ` Juanma Barranquero
  0 siblings, 1 reply; 7+ messages in thread
From: Taylor Venable @ 2007-02-28 17:24 UTC (permalink / raw)
  To: help-gnu-emacs

On 28 Feb 2007 08:05:29 -0800
"Sandesh" <sandesh.hegde@gmail.com> wrote:

> On Feb 28, 11:44 am, David Kastrup <d...@gnu.org> wrote:
> > tommy <toxiuf...@gmail.com> writes:
> > > How to turn off the beer when i use mouse roll to the buffer? beer
> > > when at the top and the bottom!
> >
> > M-x customize-variable RET visible-bell RET
> >
> > --
> > David Kastrup, Kriemhildstr. 15, 44793 Bochum
> 
> I dont want any visible-bell or beep, how can that be done ?

The variable ring-bell-function identifies what function to call to
ring the system bell.  The target is a function that accepts no
arguments.  If you set it to an empty lambda function, the bell won't
ring.  In your .emacs file put:

(setq ring-bell-function (lambda nil))

-- 
Taylor Venable
taylor@metasyntax.net
http://www.metasyntax.net/

"Simplicity is prerequisite for reliability."       -- Edsger Dijkstra

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to turn off the sound
  2007-02-28 17:24     ` Taylor Venable
@ 2007-02-28 20:23       ` Juanma Barranquero
  0 siblings, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2007-02-28 20:23 UTC (permalink / raw)
  To: Taylor Venable; +Cc: help-gnu-emacs

On 2/28/07, Taylor Venable <taylor@metasyntax.net> wrote:

> (setq ring-bell-function (lambda nil))

I use:

 (setq ring-bell-function 'ignore)

             Juanma

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-02-28 20:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.195.1172620159.7795.help-gnu-emacs@gnu.org>
2007-02-28  6:44 ` How to turn off the sound David Kastrup
2007-02-28 16:05   ` Sandesh
2007-02-28 17:24     ` Taylor Venable
2007-02-28 20:23       ` Juanma Barranquero
2007-02-27 19:11 tommy
2007-02-28  0:04 ` Matthew Flaschen
2007-02-28  0:31 ` David Hansen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.