all repos — st @ 082bab29f3551e5cee332832ff767c3fb65a5cbc

st (suckless terminal) config

Fixing a compile error.
Christoph Lohmann 20h@r-36.net
commit

082bab29f3551e5cee332832ff767c3fb65a5cbc

parent

ac4c6da4ef9b05e2886c26272745effc4f975042

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

jump to
M st.cst.c

@@ -2530,7 +2530,7 @@ if(x == 0) {

xclear(0, (y == 0)? 0 : winy, borderpx, winy + xw.ch + ((y >= term.row-1)? xw.h : 0)); } - if(x + charlen >= term.col) + if(x + charlen >= term.col) { xclear(winx + width, (y == 0)? 0 : winy, xw.w, ((y >= term.row-1)? xw.h : (winy + xw.ch))); }