=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.836 retrieving revision 1.837 diff -c -r1.836 -r1.837 *** src/usr.bin/tmux/tmux.h 2018/08/02 18:35:21 1.836 --- src/usr.bin/tmux/tmux.h 2018/08/09 09:53:44 1.837 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.836 2018/08/02 18:35:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.837 2018/08/09 09:53:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 511,520 **** #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL) /* ! * A single UTF-8 character. UTF8_SIZE must be big enough to hold at least one ! * combining character as well. */ ! #define UTF8_SIZE 9 struct utf8_data { u_char data[UTF8_SIZE]; --- 511,521 ---- #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL) /* ! * A single UTF-8 character. UTF8_SIZE must be big enough to hold ! * combining characters as well, currently at most five (of three ! * bytes) are supported. */ ! #define UTF8_SIZE 18 struct utf8_data { u_char data[UTF8_SIZE];