diff options
author | 2020-06-02 20:10:23 +0000 | |
---|---|---|
committer | 2020-06-02 20:10:23 +0000 | |
commit | a49f5513a0e512d0b136763d4fca9df71dc814de (patch) | |
tree | 5207baf53e0a451e52f402e79824824d8740bf99 /usr.bin/tmux/tmux.h | |
parent | Don't leak authmsg. (diff) | |
download | wireguard-openbsd-a49f5513a0e512d0b136763d4fca9df71dc814de.tar.xz wireguard-openbsd-a49f5513a0e512d0b136763d4fca9df71dc814de.zip |
Allow UTF-8 characters of width 0 to be stored, it is useful to be able
to put padding cells in as width 0.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d2baefeece0..c6c4408b39e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1060 2020/06/02 08:17:27 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1061 2020/06/02 20:10:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2902,7 +2902,7 @@ u_int session_group_attached_count(struct session_group *); void session_renumber_windows(struct session *); /* utf8.c */ -utf8_char utf8_build_one(char, u_int); +utf8_char utf8_build_one(u_char); enum utf8_state utf8_from_data(const struct utf8_data *, utf8_char *); void utf8_to_data(utf8_char, struct utf8_data *); void utf8_set(struct utf8_data *, u_char); |