all repos — st @ f4020b2cc4fe45c9e8bfe47fc73deccd867cf9de

st (suckless terminal) config

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!
Hiltjo Posthuma hiltjo@codemadness.org
commit

f4020b2cc4fe45c9e8bfe47fc73deccd867cf9de

parent

a5a928bfc1dd049780a45e072cb4ee42de7219bf

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M x.cx.c

@@ -618,6 +618,9 @@

void setsel(char *str, Time t) { + if (!str) + return; + free(xsel.primary); xsel.primary = str;