aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-06-02 20:10:23 +0000
committernicm <nicm>2020-06-02 20:10:23 +0000
commit2a4d4bda2b94602e9f999ff0b59efa92613f75a9 (patch)
tree86cd9c1ee3eac4f1a9aacb9b9d1a3062ec106a09 /tmux.h
parentf5366ff828cde78c140efa2dd9453956b59f5241 (diff)
downloadrtmux-2a4d4bda2b94602e9f999ff0b59efa92613f75a9.tar.gz
rtmux-2a4d4bda2b94602e9f999ff0b59efa92613f75a9.tar.bz2
rtmux-2a4d4bda2b94602e9f999ff0b59efa92613f75a9.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 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 950496f0..b02525fa 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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);