# HG changeset patch # User Christian Brabandt # Date 1503524704 -7200 # Node ID 43f03e584002bfe6c208cf387fe91cc73d3516aa # Parent daf75bde96427a53ccb84837a4e4302f3e470105 patch 8.0.0991: using wrong character conversion for DBCS commit https://github.com/vim/vim/commit/6c4d12c5278fc6b7a6dee2043bc1af713f894ae5 Author: Bram Moolenaar Date: Wed Aug 23 23:36:25 2017 +0200 patch 8.0.0991: using wrong character conversion for DBCS Problem: Using wrong character conversion for DBCS. Solution: Use utf_char2bytes instead of mb_char2bytes. (Yasuhiro Matsumoto, closes #2012) diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -945,7 +945,7 @@ move_terminal_to_buffer(term_T *term) width = 1; vim_memset(p + pos.col, 0, sizeof(cellattr_T)); if (ga_grow(&ga, 1) == OK) - ga.ga_len += mb_char2bytes(' ', + ga.ga_len += utf_char2bytes(' ', (char_u *)ga.ga_data + ga.ga_len); } else @@ -1943,7 +1943,7 @@ handle_pushline(int cols, const VTermScr break; } for (i = 0; (c = cells[col].chars[i]) > 0 || i == 0; ++i) - ga.ga_len += mb_char2bytes(c == NUL ? ' ' : c, + ga.ga_len += utf_char2bytes(c == NUL ? ' ' : c, (char_u *)ga.ga_data + ga.ga_len); p[col].width = cells[col].width; p[col].attrs = cells[col].attrs; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 991, +/**/ 990, /**/ 989,