all repos — st @ 42505c5215c84db192287337922581ba43dec89d

st (suckless terminal) config

Removing unneeded arguments to copy(). Thanks to Andrew Hills.
Christoph Lohmann 20h@r-36.net
commit

42505c5215c84db192287337922581ba43dec89d

parent

462a966ee2c0f49f432bedaf8e6ebdff995262a9

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

jump to
M st.cst.c

@@ -2059,7 +2059,7 @@ xdraws(term.line[oldy][oldx].c, term.line[oldy][oldx], oldx, oldy, 1, sl);

} else xclear(oldx, oldy, oldx, oldy); - xcopy(oldx, oldy, 1, 1); + xcopy(); /* draw the new one */ if(!(term.c.state & CURSOR_HIDE)) {

@@ -2074,7 +2074,7 @@ xdraws(g.c, g, term.c.x, term.c.y, 1, sl);

oldx = term.c.x, oldy = term.c.y; } - xcopy(term.c.x, term.c.y, 1, 1); + xcopy(); } void