aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {
2059 } else 2059 } else
2060 xclear(oldx, oldy, oldx, oldy); 2060 xclear(oldx, oldy, oldx, oldy);
2061 2061
2062 xcopy(oldx, oldy, 1, 1); 2062 xcopy();
2063 2063
2064 /* draw the new one */ 2064 /* draw the new one */
2065 if(!(term.c.state & CURSOR_HIDE)) { 2065 if(!(term.c.state & CURSOR_HIDE)) {
@@ -2074,7 +2074,7 @@ xdrawcursor(void) {
2074 oldx = term.c.x, oldy = term.c.y; 2074 oldx = term.c.x, oldy = term.c.y;
2075 } 2075 }
2076 2076
2077 xcopy(term.c.x, term.c.y, 1, 1); 2077 xcopy();
2078} 2078}
2079 2079
2080void 2080void