GNU bug report logs - #23810
avoid.el: mouse-avoidance-ignore-p does not ignore file-notify events

Previous Next

Package: emacs;

Reported by: Jonathan Kotta <jpkotta <at> gmail.com>

Date: Mon, 20 Jun 2016 17:43:01 UTC

Severity: normal

Tags: unreproducible

Done: npostavs <at> users.sourceforge.net

Bug is archived. No further changes may be made.

Full log


Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Jonathan Kotta <jpkotta <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: avoid.el: mouse-avoidance-ignore-p does not ignore file-notify events
Date: Mon, 20 Jun 2016 12:41:36 -0500
[Message part 1 (text/plain, inline)]
I use mpd and ncmpcpp.  mpd allows sending sound data to a fifo, and
ncmpcpp can read from that fifo and do sound visualizations with the data.
So when mpd is playing, it is constantly writing to the fifo and generating
file-notify events.  I'm not entirely sure why Emacs is receiving these
events, but it is, and it causes mouse avoidance to kick in without
typing.  I can't reproduce the the problem reliably, but it occurs
regularly.  The attached patch fixes it for me, and it just makes sense for
mouse-avoidance-ignore-p to ignore file-notify events.  I'm not sure if
there are additional types of events that it should also ignore; I couldn't
find an exhaustive list of all the event types.

diff --git a/lisp/avoid.el b/lisp/avoid.el
index 3d43539..e42e08a 100644
--- a/lisp/avoid.el
+++ b/lisp/avoid.el
@@ -335,7 +335,7 @@ redefine this function to suit your own tastes."
      (let ((modifiers (event-modifiers (car last-input-event))))
        (or (memq (car last-input-event)
  '(mouse-movement scroll-bar-movement
-   select-window focus-out))
+   select-window focus-out file-notify))
    (memq 'click modifiers)
    (memq 'double modifiers)
    (memq 'triple modifiers)


-- 
Thanks,

Jonathan Kotta

Hofstadter's Law:
    It always takes longer than you expect, even
    when you take into account Hofstadter's Law.
[Message part 2 (text/html, inline)]

This bug report was last modified 8 years and 22 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.