summaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2022-12-31 16:35:12 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2022-12-31 16:35:12 -0500
commit8029cd7933b4904c4bb0f13012515e9c9c2ab435 (patch)
treefb832cae42ef2b1e347f110bef176e413011216c /st.c
parent7c6ef5232de8d31a10e593882c29189c05296541 (diff)
downloadst-8029cd7933b4904c4bb0f13012515e9c9c2ab435.tar.gz
Added ligatures patch
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/st.c b/st.c
index 41d5ace..1c2edd6 100644
--- a/st.c
+++ b/st.c
@@ -2643,7 +2643,8 @@ draw(void)
drawregion(0, 0, term.col, term.row);
xdrawcursor(cx, term.c.y, term.line[term.c.y][cx],
- term.ocx, term.ocy, term.line[term.ocy][term.ocx]);
+ term.ocx, term.ocy, term.line[term.ocy][term.ocx],
+ term.line[term.ocy], term.col);
term.ocx = cx;
term.ocy = term.c.y;
xfinishdraw();