diff options
author | 2019-05-13 20:10:23 +0000 | |
---|---|---|
committer | 2019-05-13 20:10:23 +0000 | |
commit | d37269ef36fa6f867093ec825e7013d703d7e218 (patch) | |
tree | fe5b00ca4e52ecd24a8c376479f4eb0a9e1e9936 /usr.bin/tmux/grid.c | |
parent | Always include Lock in the menu. (diff) | |
download | wireguard-openbsd-d37269ef36fa6f867093ec825e7013d703d7e218.tar.xz wireguard-openbsd-d37269ef36fa6f867093ec825e7013d703d7e218.zip |
Add support for overline (SGR 53), from Ricardo Banffy.
Diffstat (limited to 'usr.bin/tmux/grid.c')
-rw-r--r-- | usr.bin/tmux/grid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/grid.c b/usr.bin/tmux/grid.c index 47c5ded3f96..451df187b77 100644 --- a/usr.bin/tmux/grid.c +++ b/usr.bin/tmux/grid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grid.c,v 1.93 2019/04/02 08:45:32 nicm Exp $ */ +/* $OpenBSD: grid.c,v 1.94 2019/05/13 20:10:23 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -790,6 +790,7 @@ grid_string_cells_code(const struct grid_cell *lastgc, { GRID_ATTR_UNDERSCORE_3, 43 }, { GRID_ATTR_UNDERSCORE_4, 44 }, { GRID_ATTR_UNDERSCORE_5, 45 }, + { GRID_ATTR_OVERLINE, 53 }, }; n = 0; |