diff options
author | nicm <nicm> | 2020-06-02 20:10:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-06-02 20:10:23 +0000 |
commit | 2a4d4bda2b94602e9f999ff0b59efa92613f75a9 (patch) | |
tree | 86cd9c1ee3eac4f1a9aacb9b9d1a3062ec106a09 /tmux.h | |
parent | f5366ff828cde78c140efa2dd9453956b59f5241 (diff) | |
download | rtmux-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |