don't print TIMESTAMP messages

This commit is contained in:
rsc 2004-04-22 15:19:59 +00:00
parent 7e42d21012
commit 49fda441d2

View file

@ -477,7 +477,8 @@ if(0) fprint(2, "xselect target=%d requestor=%d property=%d selection=%d\n",
qunlock(&clip.lk); qunlock(&clip.lk);
}else{ }else{
name = XGetAtomName(xd, xe->target); name = XGetAtomName(xd, xe->target);
fprint(2, "%s: cannot handle selection request for '%s' (%d)\n", argv0, name, (int)xe->target); if(strcmp(name, "TIMESTAMP") != 0)
fprint(2, "%s: cannot handle selection request for '%s' (%d)\n", argv0, name, (int)xe->target);
r.xselection.property = None; r.xselection.property = None;
} }