From 38a3d6c9601b637a28f399059263300e9f65eba4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 11 Mar 2017 18:42:56 +0100 Subject: 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. --- src/testdir/test3.in | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/testdir/test3.in b/src/testdir/test3.in index 9e66436e7..c78a66ec1 100644 --- 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 index 0f7b4e499..5a58f4317 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 443, /**/ 442, /**/ -- cgit v1.2.1