diff options
author | 2019-06-27 15:17:41 +0000 | |
---|---|---|
committer | 2019-06-27 15:17:41 +0000 | |
commit | bc174b93cb3a8ff3fe3bfe7fcdf9f32fe19f9054 (patch) | |
tree | b906d51450f458e6c0422b50b218aa3490a33790 /usr.bin/tmux/screen-write.c | |
parent | Fix mandoc_normdate() and the way it is used. (diff) | |
download | wireguard-openbsd-bc174b93cb3a8ff3fe3bfe7fcdf9f32fe19f9054.tar.xz wireguard-openbsd-bc174b93cb3a8ff3fe3bfe7fcdf9f32fe19f9054.zip |
Add support for underscore colours with Setulc capability, mostly from
Kai Moschcau.
Diffstat (limited to 'usr.bin/tmux/screen-write.c')
-rw-r--r-- | usr.bin/tmux/screen-write.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/screen-write.c b/usr.bin/tmux/screen-write.c index de10d577831..07bbc29eea7 100644 --- a/usr.bin/tmux/screen-write.c +++ b/usr.bin/tmux/screen-write.c @@ -1,4 +1,4 @@ -/* $OpenBSD: screen-write.c,v 1.153 2019/05/28 09:50:54 nicm Exp $ */ +/* $OpenBSD: screen-write.c,v 1.154 2019/06/27 15:17:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -36,7 +36,7 @@ static const struct grid_cell *screen_write_combine(struct screen_write_ctx *, const struct utf8_data *, u_int *); static const struct grid_cell screen_write_pad_cell = { - GRID_FLAG_PADDING, 0, 8, 8, { { 0 }, 0, 0, 0 } + GRID_FLAG_PADDING, 0, 8, 8, 0, { { 0 }, 0, 0, 0 } }; struct screen_write_collect_item { |