aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-09-05 21:52:01 +0200
committerChristoph Lohmann <20h@r-36.net>2012-09-05 21:52:01 +0200
commit42505c5215c84db192287337922581ba43dec89d (patch)
treea5ae4a24addd589293b80ab887ba2c0ce96c7b44 /st.c
parent462a966ee2c0f49f432bedaf8e6ebdff995262a9 (diff)
downloadst-42505c5215c84db192287337922581ba43dec89d.tar.zst
Removing unneeded arguments to copy(). Thanks to Andrew Hills.
Diffstat (limited to 'st.c')
-rw-r--r--st.c4
1 files 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