diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-05-22 16:05:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-05-22 16:05:19 +0200 |
commit | e4c21e6899b6e4d9d4e0b29fc43c604edd3bc507 (patch) | |
tree | 2ee8def4dc98978732d285307b214c836801f8fa /src | |
parent | bc6cf6c5117d9ef19904c6fb56a2a45faa33afdb (diff) | |
download | vim-git-e4c21e6899b6e4d9d4e0b29fc43c604edd3bc507.tar.gz |
updated for version 7.4.303v7.4.303
Problem: When using double-width characters the text displayed on the
command line is sometimes truncated.
Solution: Reset the string lenght. (Nobuhiro Takasaki)
Diffstat (limited to 'src')
-rw-r--r-- | src/screen.c | 9 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c index 78e439944..aea3f75a4 100644 --- a/src/screen.c +++ b/src/screen.c @@ -6916,15 +6916,16 @@ screen_puts(text, row, col, attr) * a NUL. */ void -screen_puts_len(text, len, row, col, attr) +screen_puts_len(text, textlen, row, col, attr) char_u *text; - int len; + int textlen; int row; int col; int attr; { unsigned off; char_u *ptr = text; + int len = textlen; int c; #ifdef FEAT_MBYTE unsigned max_off; @@ -7169,7 +7170,11 @@ screen_puts_len(text, len, row, col, attr) col += mbyte_cells; ptr += mbyte_blen; if (clear_next_cell) + { + /* This only happens at the end, display one space next. */ ptr = (char_u *)" "; + len = -1; + } } else #endif diff --git a/src/version.c b/src/version.c index 1c1aa2b39..efdb1964b 100644 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 303, +/**/ 302, /**/ 301, |