Removing the debug messages again.
This commit is contained in:
parent
57f39defaf
commit
deb720af7f
2
st.c
2
st.c
|
@ -844,7 +844,6 @@ xsetsel(char *str) {
|
||||||
|
|
||||||
void
|
void
|
||||||
brelease(XEvent *e) {
|
brelease(XEvent *e) {
|
||||||
fprintf(stderr, "brelease\n");
|
|
||||||
struct timeval now;
|
struct timeval now;
|
||||||
|
|
||||||
if(IS_SET(MODE_MOUSE)) {
|
if(IS_SET(MODE_MOUSE)) {
|
||||||
|
@ -3175,7 +3174,6 @@ run(void) {
|
||||||
XNextEvent(xw.dpy, &ev);
|
XNextEvent(xw.dpy, &ev);
|
||||||
if(XFilterEvent(&ev, None))
|
if(XFilterEvent(&ev, None))
|
||||||
continue;
|
continue;
|
||||||
fprintf(stderr, "ev.type = %d\n", ev.type);
|
|
||||||
if(handler[ev.type])
|
if(handler[ev.type])
|
||||||
(handler[ev.type])(&ev);
|
(handler[ev.type])(&ev);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue