diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-24 18:30:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 18:30:35 +0100 |
commit | 38274051c066ff0a28582aae5c2edf47825d9f57 (patch) | |
tree | 19fba05c7d751fd3ee9aaa20b6a65675a6001c3e /src/nvim/charset.c | |
parent | a62ec4eb989f41ace8e6b7f085349a2bce964d68 (diff) | |
parent | 7214d0bc846179a862e8d3061d00270a6caa0d7b (diff) | |
download | rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.tar.gz rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.tar.bz2 rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.zip |
Merge pull request #6323 from justinmk/vimpatches
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r-- | src/nvim/charset.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c index 9e240fd38b..f31cef5886 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -1160,6 +1160,11 @@ void getvcol(win_T *wp, pos_T *pos, colnr_T *start, colnr_T *cursor, // continue until the NUL posptr = NULL; } else { + // Special check for an empty line, which can happen on exit, when + // ml_get_buf() always returns an empty string. + if (*ptr == NUL) { + pos->col = 0; + } posptr = ptr + pos->col; } |