aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2020-05-25 18:01:20 +0100
committerThomas Adam <thomas@xteddy.org>2020-05-25 18:01:20 +0100
commitb34af611a5c02b82ee796edcd4b6c5999cdbeb8a (patch)
tree5d073857d243a3f31452909d3d2b659d42b88953 /tmux.h
parent32ce468b22aaffac466fe1fc07a431a2da0fbf32 (diff)
parentbbfb44e9b2e5b2e6560abb0892bb9d5f68e42d0f (diff)
downloadrtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.tar.gz
rtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.tar.bz2
rtmux-b34af611a5c02b82ee796edcd4b6c5999cdbeb8a.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index 61265488..87d9dd3c 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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);