all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Michael Heerdegen <michael_heerdegen@web.de>
To: help-gnu-emacs@gnu.org
Subject: Re: beep makes no sound on xfce
Date: Sat, 12 Sep 2015 18:03:16 +0200	[thread overview]
Message-ID: <877fnv39rv.fsf@web.de> (raw)
In-Reply-To: 20150912081851.5514fc7e@gauss

Joe Riel <joer@san.rr.com> writes:

> Any idea what mechanism emacs uses to generate a beep on linux?  I'm
> thinking the problem lies there, rather than in emacs.

I think `XTring_bell' in xterm.c is the function implementing this:

--8<---------------cut here---------------start------------->8---
static void
XTring_bell (struct frame *f)
{
  if (FRAME_X_DISPLAY (f))
    {
      if (visible_bell)
	XTflash (f);
      else
	{
	  block_input ();
#ifdef HAVE_XKB
          XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
#else
	  XBell (FRAME_X_DISPLAY (f), 0);
#endif
	  XFlush (FRAME_X_DISPLAY (f));
	  unblock_input ();
	}
    }
}
--8<---------------cut here---------------end--------------->8---

I don't have any background knowledge, AFAICT this calls the system bell
via X.  AFAIK the X bell used to activate some little beeper device that
modern hardware often doesn't have.  It never worked for me, for
example, so I use the visible bell.

There is a news entry about the above function btw:

  2013-03-25  Jan Djärv  <jan.h.d@swipnet.se>

	* xterm.c: Include X11/XKBlib.h
	(XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).

Others hopefully can help further.


Regards,

Michael.




  reply	other threads:[~2015-09-12 16:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-10  4:25 beep makes no sound on xfce Joe Riel
2015-09-12  9:21 ` Michael Heerdegen
2015-09-12 15:18   ` Joe Riel
2015-09-12 16:03     ` Michael Heerdegen [this message]
2015-09-12 23:36       ` Joe Riel
     [not found]   ` <mailman.1000.1442071138.19560.help-gnu-emacs@gnu.org>
2015-09-12 16:48     ` Marco Wahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877fnv39rv.fsf@web.de \
    --to=michael_heerdegen@web.de \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.