From 42505c5215c84db192287337922581ba43dec89d Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Wed, 5 Sep 2012 21:52:01 +0200 Subject: [PATCH] Removing unneeded arguments to copy(). Thanks to Andrew Hills. --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index 655d5a3..4e208d4 100644 --- a/st.c +++ b/st.c @@ -2059,7 +2059,7 @@ xdrawcursor(void) { } 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 @@ xdrawcursor(void) { oldx = term.c.x, oldy = term.c.y; } - xcopy(term.c.x, term.c.y, 1, 1); + xcopy(); } void -- libgit2 1.1.1