summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorDaniel Colascione <dancol@dancol.org>2018-06-11 15:06:51 -0700
committerDaniel Colascione <dancol@dancol.org>2018-06-11 16:10:34 -0700
commit6a1dfa713b70861f63def3dbb1d5b1aa6c236e79 (patch)
tree4c89935199549cd175cb75ab7b8e6a180d096521 /src/keyboard.c
parent2f6c682061a281dc3e397ff4727a164880e86e7b (diff)
downloademacs-6a1dfa713b70861f63def3dbb1d5b1aa6c236e79.tar.gz
Losing focus should not stop idleness
* src/keyboard.c (read_char): Make Qfocus_out not break idle.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 84acb247228..0d6a6ad56b8 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -2823,6 +2823,7 @@ read_char (int commandflag, Lisp_Object map,
if (CONSP (c)
&& (EQ (XCAR (c), Qselect_window)
+ || EQ (XCAR (c), Qfocus_out)
#ifdef HAVE_DBUS
|| EQ (XCAR (c), Qdbus_event)
#endif