diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-05-25 18:01:20 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-05-25 18:01:20 +0100 |
commit | b34af611a5c02b82ee796edcd4b6c5999cdbeb8a (patch) | |
tree | 5d073857d243a3f31452909d3d2b659d42b88953 /tmux.h | |
parent | 32ce468b22aaffac466fe1fc07a431a2da0fbf32 (diff) | |
parent | bbfb44e9b2e5b2e6560abb0892bb9d5f68e42d0f (diff) | |
download | rtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.tar.gz rtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.tar.bz2 rtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -675,7 +675,7 @@ struct grid_cell { /* Grid extended cell entry. */ struct grid_extd_entry { - uint32_t data; + u_int data; u_short attr; u_char flags; int fg; @@ -2891,9 +2891,9 @@ u_int session_group_attached_count(struct session_group *); void session_renumber_windows(struct session *); /* utf8.c */ -uint32_t utf8_set_big(char, u_int); -uint32_t utf8_map_big(const struct utf8_data *); -void utf8_get_big(uint32_t, struct utf8_data *); +u_int utf8_set_big(char, u_int); +u_int utf8_map_big(const struct utf8_data *); +void utf8_get_big(u_int, struct utf8_data *); void utf8_set(struct utf8_data *, u_char); void utf8_copy(struct utf8_data *, const struct utf8_data *); enum utf8_state utf8_open(struct utf8_data *, u_char); |