mirror of
https://github.com/neovim/neovim.git
synced 2025-09-22 19:18:34 +00:00
vim-patch:7.4.729
Problem: Occasional crash with 'list' set. Solution: Fix off-by-one error. (Christian Brabandt)
This commit is contained in:

committed by
Jurica Bradaric

parent
ee0e214427
commit
21afabb9e8
@@ -3469,7 +3469,7 @@ win_line (
|
||||
&& !(noinvcur
|
||||
&& lnum == wp->w_cursor.lnum
|
||||
&& (colnr_T)vcol == wp->w_virtcol)))
|
||||
&& lcs_eol_one >= 0) {
|
||||
&& lcs_eol_one > 0) {
|
||||
/* Display a '$' after the line or highlight an extra
|
||||
* character if the line break is included. */
|
||||
/* For a diff line the highlighting continues after the
|
||||
|
Reference in New Issue
Block a user