Adding ligatures patch as requested in #4
This commit is contained in:
parent
ff5f26cc3b
commit
e0169edec9
10 changed files with 222 additions and 8 deletions
6
st.c
6
st.c
|
|
@ -2784,8 +2784,14 @@ draw(void)
|
|||
#if SCROLLBACK_PATCH
|
||||
if (term.scr == 0)
|
||||
#endif // SCROLLBACK_PATCH
|
||||
#if LIGATURES_PATCH
|
||||
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);
|
||||
#else
|
||||
xdrawcursor(cx, term.c.y, term.line[term.c.y][cx],
|
||||
term.ocx, term.ocy, term.line[term.ocy][term.ocx]);
|
||||
#endif // LIGATURES_PATCH
|
||||
term.ocx = cx;
|
||||
term.ocy = term.c.y;
|
||||
xfinishdraw();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue