# HG changeset patch # User Christian Brabandt # Date 1489254304 -3600 # Node ID 4618af3049fe6ef9f34114f5056dc8486790df75 # Parent 0ca13197bbc66c6f1f8f2d8f298fef4d0f396187 patch 8.0.0443: terminal width is set to 80 in test3 commit https://github.com/vim/vim/commit/38a3d6c9601b637a28f399059263300e9f65eba4 Author: Bram Moolenaar Date: Sat Mar 11 18:42:56 2017 +0100 patch 8.0.0443: terminal width is set to 80 in test3 Problem: Terminal width is set to 80 in test3. Solution: Instead of setting 'columns' set 'wrapmargin' depending on 'columns. diff --git a/src/testdir/test3.in b/src/testdir/test3.in --- a/src/testdir/test3.in +++ b/src/testdir/test3.in @@ -970,7 +970,8 @@ break; /* end of AUTO */ STARTTEST -:set tw=0 wm=60 columns=80 noai fo=croq +:set tw=0 noai fo=croq +:let &wm = &columns - 20 /serious/e a about life, the universe, and the rest ENDTEST diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 443, +/**/ 442, /**/ 441,