From ada7026e755141f534ba3ea00aee5bf90be997da Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 1 Jun 2006 23:26:44 +0000 Subject: Run XFilterEvent() on all events. (Samuel Thibault). Bump to 1.0.2. --- ChangeLog | 9 +++++++++ configure.ac | 2 +- xev.c | 6 +++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6eb4c51..b7f7baa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-06-02 Daniel Stone + + * configure.ac: + Bump to 1.0.2. + + * xev.c: + Bug #6598: Run XFilterEvent() on all events, not just KeyPresses. + (Samuel Thibault) + 2005-12-20 Kevin E. Martin * configure.ac: diff --git a/configure.ac b/configure.ac index 7940489..1197686 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) -AC_INIT(xev,[1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xev) +AC_INIT(xev,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xev) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE diff --git a/xev.c b/xev.c index 1622fe5..8ecf148 100644 --- a/xev.c +++ b/xev.c @@ -157,10 +157,10 @@ do_KeyPress (XEvent *eventp) } else { printf ("\n"); } - - printf (" XFilterEvent returns: %s\n", - XFilterEvent (eventp, e->window) ? "True" : "False"); } + + printf (" XFilterEvent returns: %s\n", + XFilterEvent (eventp, e->window) ? "True" : "False"); } static void -- cgit v1.2.3