mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.729
Problem: Occasional crash with 'list' set. Solution: Fix off-by-one error. (Christian Brabandt)
This commit is contained in:
@@ -4715,7 +4715,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
|
|||||||
&& !(noinvcur
|
&& !(noinvcur
|
||||||
&& lnum == wp->w_cursor.lnum
|
&& lnum == wp->w_cursor.lnum
|
||||||
&& (colnr_T)vcol == wp->w_virtcol)))
|
&& (colnr_T)vcol == wp->w_virtcol)))
|
||||||
&& lcs_eol_one >= 0)
|
&& lcs_eol_one > 0)
|
||||||
{
|
{
|
||||||
/* Display a '$' after the line or highlight an extra
|
/* Display a '$' after the line or highlight an extra
|
||||||
* character if the line break is included. */
|
* character if the line break is included. */
|
||||||
|
@@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
729,
|
||||||
/**/
|
/**/
|
||||||
728,
|
728,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user