changeset 6187:e98e415ea3b8 v7.4.429

updated for version 7.4.429 Problem: Build fails with fewer features. (Elimar Riesebieter) Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Sat, 30 Aug 2014 13:32:06 +0200
parents 35ec194cce5b
children 94aa9b1e062a
files src/normal.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    429,
+/**/
     428,
 /**/
     427,