diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-09-05 21:52:01 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-09-05 21:52:01 +0200 |
commit | d0973d19daa9f1c5807de2bcd5da7d726470194a (patch) | |
tree | a5ae4a24addd589293b80ab887ba2c0ce96c7b44 | |
parent | f5c6bcf03a87b663db3b9358b16adde460ba787c (diff) | |
download | st-d0973d19daa9f1c5807de2bcd5da7d726470194a.tar.gz st-d0973d19daa9f1c5807de2bcd5da7d726470194a.tar.bz2 |
Removing unneeded arguments to copy(). Thanks to Andrew Hills.
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |