[comp.emacs] Bug fix for 18.35.

rms@PREP.AI.MIT.EDU (Richard M. Stallman) (01/07/87)

To avoid a beep every time a mouse button is released
in the X window system, change the code after line 655 in xfns.c
from

      if (NULL (Mouse_Cmd)) 
	{
	  Ding ();
	  Vx_mouse_pos = Qnil;
	}

to

      if (NULL (Mouse_Cmd)) 
	{
	  if (xrep.type != ButtonReleased)
	    Ding ();
	  Vx_mouse_pos = Qnil;
	}