unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@IRO.UMontreal.CA>
To: Cecil Westerhof <Cecil@decebal.nl>
Cc: 30080@debbugs.gnu.org
Subject: bug#30080: 24.5; write-region can reset idle time
Date: Fri, 12 Jan 2018 09:56:48 -0500	[thread overview]
Message-ID: <jwva7xjqghd.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <87efmv97t7.fsf@munus.decebal.nl> (Cecil Westerhof's message of "Fri, 12 Jan 2018 02:36:52 +0100")

>>>     (global-auto-revert-mode 1)
>> Ha, I think you have your culprit right there: my crystal ball says that
>> if you have auto-revert active on the file you modify with
>> `write-region` (or maybe even just a file in the same directory) any
>> modification to the file (e.g. via `write-region`) will send
>> a pseudo-event, which Emacs's command-loop will confuse for an actual
>> user event!
> The problem being that until the 19th of December it worked without a
> problem. I did not change my .emacs.

And I see also that keyboard.c does seem to do it right:

      if (CONSP (c)
          && (EQ (XCAR (c), Qselect_window)
#ifdef HAVE_DBUS
	      || EQ (XCAR (c), Qdbus_event)
#endif
#ifdef USE_FILE_NOTIFY
	      || EQ (XCAR (c), Qfile_notify)
#endif
	      || EQ (XCAR (c), Qconfig_changed_event))
          && !end_time)
	/* We stopped being idle for this event; undo that.  This
	   prevents automatic window selection (under
	   mouse-autoselect-window) from acting as a real input event, for
	   example banishing the mouse under mouse-avoidance-mode.  */
	timer_resume_idle ();

Hmm...

> It is even more funny: when I play a video with mpv, idle time is also
> reset. And this I find really odd.

Can you try to run Emacs under GDB?
Then start Emacs to try and reproduce the problem with mpv.
Once ready to start mpv, hit `C-c C-z` in GDB, then type

    break timer_stop_idle
    continue

then launch mpv and try to see the backtrace (with command `bt`) when
the timer_stop_idle breakpoint is triggered.
[ Then again, maybe this will trigger all the time, but is a false
  alarm because it would be undone right after by the above code.  ]


        Stefan





  parent reply	other threads:[~2018-01-12 14:56 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-11 21:00 bug#30080: 24.5; write-region can reset idle time Cecil Westerhof
2018-01-11 23:49 ` Stefan Monnier
2018-01-12  1:36   ` Cecil Westerhof
2018-01-12  9:11     ` Eli Zaretskii
2018-01-12 10:36       ` Cecil Westerhof
2018-01-12 13:53         ` Eli Zaretskii
2018-01-12 14:37           ` Cecil Westerhof
2018-01-12 16:51             ` Glenn Morris
2018-01-12 17:10               ` Cecil Westerhof
2018-01-12 18:22                 ` Stefan Monnier
2018-01-12 22:59                   ` Cecil Westerhof
2018-01-12 14:56     ` Stefan Monnier [this message]
2018-01-12 15:11       ` Cecil Westerhof

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=jwva7xjqghd.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=30080@debbugs.gnu.org \
    --cc=Cecil@decebal.nl \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).