diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-13 23:02:26 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-13 23:02:26 +0100 |
commit | 1eefbd28e83d6031a50b7afe44e77b391ad215eb (patch) | |
tree | a19aa5ed6cd51ec50803d790abcdff5c51501dab /tty.c | |
parent | b5b5d35eee1890daa7627556425ed32b5e4491fa (diff) | |
parent | 1ee944a19def82cb62abf6ab92c17eb30df77a41 (diff) | |
download | rtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.tar.gz rtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.tar.bz2 rtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2199,6 +2199,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc, tty_putcode(tty, TTYC_INVIS); if (changed & GRID_ATTR_STRIKETHROUGH) tty_putcode(tty, TTYC_SMXX); + if (changed & GRID_ATTR_OVERLINE) + tty_putcode(tty, TTYC_SMOL); if ((changed & GRID_ATTR_CHARSET) && tty_acs_needed(tty)) tty_putcode(tty, TTYC_SMACS); } |