changeset 36328:784bfb070468 draft v9.1.0789

patch 9.1.0789: tests: ':resize + 5' has invalid space after '+' Commit: https://github.com/vim/vim/commit/c0cba184f54e052cf8f04baca24bdee72a4b7de6 Author: Milly <milly.ca@gmail.com> Date: Wed Oct 16 20:03:44 2024 +0200 patch 9.1.0789: tests: ':resize + 5' has invalid space after '+' Problem: tests: ':resize + 5' has invalid space after '+' Solution: Correct the test (Milly) closes: #15884 Signed-off-by: Milly <milly.ca@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 16 Oct 2024 20:15:03 +0200
parents 5d91d6c95e6c
children 88290f0c3e4b
files src/testdir/test_window_cmd.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_window_cmd.vim
+++ b/src/testdir/test_window_cmd.vim
@@ -557,7 +557,7 @@ func Test_equalalways_on_close()
   1wincmd w
   split
   4wincmd w
-  resize + 5
+  resize +5
   " left column has three windows, equalized heights.
   " right column has two windows, top one a bit higher
   let height_1 = winheight(1)
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    789,
+/**/
     788,
 /**/
     787,