Merge #10645 from janlazo/vim-8.1.0999

vim-patch:8.1.{1005,1041,1049,1052,1053,1086,1394}
This commit is contained in:
Justin M. Keyes
2019-07-29 20:59:38 +02:00
committed by GitHub
13 changed files with 66 additions and 66 deletions

View File

@@ -127,7 +127,11 @@
# define MB_CHAR2LEN(c) mb_char2len(c)
# define PTR2CHAR(p) utf_ptr2char(p)
# define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE
# define RESET_BINDING(wp) \
do { \
(wp)->w_p_scb = false; \
(wp)->w_p_crb = false; \
} while (0)
/// Calculate the length of a C array
///