From: Bram Moolenaar Date: Sat, 30 Aug 2014 11:32:06 +0000 (+0200) Subject: updated for version 7.4.429 X-Git-Tag: v7.4.429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84d8cdd76900a8834260bc69d0be202923614ae0;p=vim updated for version 7.4.429 Problem: Build fails with fewer features. (Elimar Riesebieter) Solution: Add #ifdef. --- diff --git a/src/normal.c b/src/normal.c index 7479ac789..a8d74117c 100644 --- a/src/normal.c +++ b/src/normal.c @@ -4518,8 +4518,10 @@ nv_screengo(oap, dir, dist) */ validate_virtcol(); virtcol = curwin->w_virtcol; +# if defined(FEAT_LINEBREAK) if (virtcol > (colnr_T)width1 && *p_sbr != NUL) virtcol -= vim_strsize(p_sbr); +# endif if (virtcol > curwin->w_curswant && (curwin->w_curswant < (colnr_T)width1 diff --git a/src/version.c b/src/version.c index 17add4334..8f3549924 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 429, /**/ 428, /**/