Compare commits

..

No commits in common. "88051b8007a08a59862045cc982ab219dc22ff40" and "1478e0d6ed3c9434862b37a5ffeea7484decbb7a" have entirely different histories.

6
x.c
View File

@ -686,8 +686,6 @@ setsel(char *str, Time t)
XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
selclear();
xclipcopy();
}
void
@ -711,9 +709,7 @@ brelease(XEvent *e)
if (mouseaction(e, 1))
return;
if (btn == Button3)
selpaste(NULL);
else if (btn == Button1)
if (btn == Button1)
mousesel(e, 1);
}