diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-08-30 13:32:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-08-30 13:32:06 +0200 |
commit | 84d8cdd76900a8834260bc69d0be202923614ae0 (patch) | |
tree | 777355a14c92429be69913476dbd7078ee90de25 /src/normal.c | |
parent | c40bdee42a58c48e00c76886289904849e8c4c3c (diff) | |
download | vim-git-84d8cdd76900a8834260bc69d0be202923614ae0.tar.gz |
updated for version 7.4.429v7.4.429
Problem: Build fails with fewer features. (Elimar Riesebieter)
Solution: Add #ifdef.
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 |