aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-22 16:08:48 -0800
committerMike Crute <mike@crute.us>2023-04-25 20:45:27 -0700
commit0ddcd0455171f2c52ae68d92bbddecb834350522 (patch)
treeb6c046074cccfbc5fbc5328d1a284d4021c767fc /st.c
parentba77c544805651604b722f2dafca867843868dd1 (diff)
downloadst-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.bz2
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.tar.xz
st-patched-0ddcd0455171f2c52ae68d92bbddecb834350522.zip
Apply st-boxdraw_v2-0.8.3
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/st.c b/st.c
index 134e724..398bb98 100644
--- a/st.c
+++ b/st.c
@@ -1215,6 +1215,9 @@ tsetchar(Rune u, const Glyph *attr, int x, int y)
1215 term.dirty[y] = 1; 1215 term.dirty[y] = 1;
1216 term.line[y][x] = *attr; 1216 term.line[y][x] = *attr;
1217 term.line[y][x].u = u; 1217 term.line[y][x].u = u;
1218
1219 if (isboxdraw(u))
1220 term.line[y][x].mode |= ATTR_BOXDRAW;
1218} 1221}
1219 1222
1220void 1223void