fix regression by selecting clipboard text

"restore the old behaviour that the primary doesn't get deleted by a simple
left click"

Patch by Daniel Tameling <tamelingdaniel@gmail.com>, thanks!
This commit is contained in:
Hiltjo Posthuma 2018-03-20 21:25:30 +01:00
parent a5a928bfc1
commit f4020b2cc4
1 changed files with 3 additions and 0 deletions

3
x.c
View File

@ -618,6 +618,9 @@ selrequest(XEvent *e)
void
setsel(char *str, Time t)
{
if (!str)
return;
free(xsel.primary);
xsel.primary = str;