aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-05-13 23:02:26 +0100
committerThomas Adam <thomas@xteddy.org>2019-05-13 23:02:26 +0100
commit1eefbd28e83d6031a50b7afe44e77b391ad215eb (patch)
treea19aa5ed6cd51ec50803d790abcdff5c51501dab /tty.c
parentb5b5d35eee1890daa7627556425ed32b5e4491fa (diff)
parent1ee944a19def82cb62abf6ab92c17eb30df77a41 (diff)
downloadrtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.tar.gz
rtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.tar.bz2
rtmux-1eefbd28e83d6031a50b7afe44e77b391ad215eb.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tty.c b/tty.c
index cc528e8e..34403a1f 100644
--- a/tty.c
+++ b/tty.c
@@ -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);
}