diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-13 20:07:19 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-13 20:13:02 -0400 |
commit | 64e74dc784b873767a5f2a764811c4ef72f81319 (patch) | |
tree | 64a6edd5875b6cdd4837f4afd4c3710676a9e7f3 /src/nvim/mark.c | |
parent | a78d4659270cb600276774eb04c967f132c13ffb (diff) | |
download | rneovim-64e74dc784b873767a5f2a764811c4ef72f81319.tar.gz rneovim-64e74dc784b873767a5f2a764811c4ef72f81319.tar.bz2 rneovim-64e74dc784b873767a5f2a764811c4ef72f81319.zip |
vim-patch:8.1.0168: output of :marks is too short with multi-byte chars
Problem: Output of :marks is too short with multi-byte chars. (Tony
Mechelynck)
Solution: Get more bytes from the text line.
https://github.com/vim/vim/commit/9d5185bf9dfaef59e47c573a60044a21d5e29c0c
Diffstat (limited to 'src/nvim/mark.c')
-rw-r--r-- | src/nvim/mark.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/mark.c b/src/nvim/mark.c index 5366fa4b7f..05f78c76bc 100644 --- a/src/nvim/mark.c +++ b/src/nvim/mark.c @@ -599,9 +599,10 @@ static char_u *mark_line(pos_T *mp, int lead_len) if (mp->lnum == 0 || mp->lnum > curbuf->b_ml.ml_line_count) return vim_strsave((char_u *)"-invalid-"); assert(Columns >= 0 && (size_t)Columns <= SIZE_MAX); - s = vim_strnsave(skipwhite(ml_get(mp->lnum)), (size_t)Columns); + // Allow for up to 5 bytes per character. + s = vim_strnsave(skipwhite(ml_get(mp->lnum)), (size_t)Columns * 5); - /* Truncate the line to fit it in the window */ + // Truncate the line to fit it in the window len = 0; for (p = s; *p != NUL; MB_PTR_ADV(p)) { len += ptr2cells(p); |