Commit 42505c5

Christoph Lohmann <20h@r-36.net>
2012-09-05 15:52:01
Removing unneeded arguments to copy(). Thanks to Andrew Hills.
1 parent 462a966
Changed files (1)
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