From: Bram Moolenaar Date: Sat, 15 Jun 2019 16:20:38 +0000 (+0200) Subject: patch 8.1.1545: when the screen is to small there is no message about that X-Git-Tag: v8.1.1545 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45aa07d3c126e887c614f8a4ebdb88aed673a9f1;p=thirdparty%2Fvim.git patch 8.1.1545: when the screen is to small there is no message about that Problem: When the screen is to small there is no message about that. (Daniel Hahler) Solution: Do not use :cquit. (closes #4534) --- diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim index f81c76df15..45d3b1d5ef 100644 --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -38,8 +38,11 @@ if &lines < 24 || &columns < 80 echoerr error split test.log $put =error - w - cquit + write + split messages + call append(line('$'), error) + write + qa! endif if has('reltime') diff --git a/src/version.c b/src/version.c index e4ef380d88..51101f81c0 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1545, /**/ 1544, /**/