diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2023-08-08 07:19:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2023-08-08 07:19:49 +0000 |
commit | 768b30d8824ae055c3edad233988988df1f464d8 (patch) | |
tree | c74c965f7be4af4141372666ca57336666424406 | |
parent | 481d9f43ae7c775106bfb762594729cd3ec7e955 (diff) |
Fix a couple of rounded border characters, from Alexis Hildebrandt.
-rw-r--r-- | usr.bin/tmux/tty-acs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tty-acs.c b/usr.bin/tmux/tty-acs.c index 996c8762b16..eedb79c2fbb 100644 --- a/usr.bin/tmux/tty-acs.c +++ b/usr.bin/tmux/tty-acs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-acs.c,v 1.12 2021/10/18 09:15:56 nicm Exp $ */ +/* $OpenBSD: tty-acs.c,v 1.13 2023/08/08 07:19:48 nicm Exp $ */ /* * Copyright (c) 2010 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -155,8 +155,8 @@ static const struct utf8_data tty_acs_rounded_borders_list[] = { { "\342\225\257", 0, 3, 1 }, /* U+256F */ { "\342\224\263", 0, 3, 1 }, /* U+2533 */ { "\342\224\273", 0, 3, 1 }, /* U+253B */ - { "\342\224\243", 0, 3, 1 }, /* U+2523 */ - { "\342\224\253", 0, 3, 1 }, /* U+252B */ + { "\342\224\234", 0, 3, 1 }, /* U+2524 */ + { "\342\224\244", 0, 3, 1 }, /* U+251C */ { "\342\225\213", 0, 3, 1 }, /* U+254B */ { "\302\267", 0, 2, 1 } /* U+00B7 */ }; |