aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2021-09-26 20:56:40 +0100
committerShivesh Mandalia <mail@shivesh.org>2021-09-26 20:56:40 +0100
commit446b356f707b1e56811ca89caa27fb083b6611d4 (patch)
tree79d5e0d125c82e92f9633db83c93793bea971ef4 /st.c
parent04b562e98a947f6b4b036481ff01c1f59e1f2681 (diff)
downloadst-446b356f707b1e56811ca89caa27fb083b6611d4.tar.gz
st-446b356f707b1e56811ca89caa27fb083b6611d4.zip
Revert ligature support patch
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/st.c b/st.c
index 15f8f96..74d4391 100644
--- a/st.c
+++ b/st.c
@@ -2668,8 +2668,7 @@ draw(void)
drawregion(0, 0, term.col, term.row);
if (term.scr == 0)
xdrawcursor(cx, term.c.y, term.line[term.c.y][cx],
- term.ocx, term.ocy, term.line[term.ocy][term.ocx],
- term.line[term.ocy], term.col);
+ term.ocx, term.ocy, term.line[term.ocy][term.ocx]);
term.ocx = cx;
term.ocy = term.c.y;
xfinishdraw();