diff options
author | nicm <nicm> | 2015-11-14 10:56:31 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-14 10:56:31 +0000 |
commit | 64333e3ef89047d1c09cdc5053af647dbd8344da (patch) | |
tree | 99b3efed938dd8499c791ce04830ec738b87041c /tmux.h | |
parent | c56b81a2ce815f6d289232f20bb6e07cfd0e36ec (diff) | |
download | rtmux-64333e3ef89047d1c09cdc5053af647dbd8344da.tar.gz rtmux-64333e3ef89047d1c09cdc5053af647dbd8344da.tar.bz2 rtmux-64333e3ef89047d1c09cdc5053af647dbd8344da.zip |
Be more strict about invalid UTF-8.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -624,7 +624,7 @@ struct utf8_data { u_char have; u_char size; - u_char width; + u_char width; /* 0xff if invalid */ } __packed; /* Grid attributes. */ |