searching for a better way to discard enter notifies

This commit is contained in:
Anselm R. Garbe
2006-07-14 13:03:53 +02:00
parent c2cf829ef9
commit a1d0f81966
4 changed files with 12 additions and 54 deletions

View File

@ -4,6 +4,7 @@
*/
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/keysym.h>
@ -37,13 +38,6 @@ void (*handler[LASTEvent]) (XEvent *) = {
[UnmapNotify] = unmapnotify
};
void
discard_events(long even_mask)
{
XEvent ev;
while(XCheckMaskEvent(dpy, even_mask, &ev));
}
static void
buttonpress(XEvent *e)
{