Commit: patch 9.2.0275: tests: test_options.vim fails

3 views
Skip to first unread message

Christian Brabandt

unread,
Mar 31, 2026, 2:02:14 PM (12 hours ago) Mar 31
to vim...@googlegroups.com
patch 9.2.0275: tests: test_options.vim fails

Commit: https://github.com/vim/vim/commit/4cc3ab7401357ac7784fe519d62cca6860d98339
Author: Christian Brabandt <c...@256bit.org>
Date: Tue Mar 31 17:44:00 2026 +0000

patch 9.2.0275: tests: test_options.vim fails

Problem: tests: test_options.vim fails
(after v9.2.0273)
Solution: allow column value of 0

Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/src/tabpanel.c b/src/tabpanel.c
index c47b6b6e4..9db957dda 100644
--- a/src/tabpanel.c
+++ b/src/tabpanel.c
@@ -83,7 +83,7 @@ tabpanelopt_changed(void)
{
p += 8;
new_columns = getdigits(&p);
- if (new_columns < 1 || new_columns > 1000)
+ if (new_columns < 0 || new_columns > 1000)
return FAIL;
}
else if (STRNCMP(p, "vert", 4) == 0)
diff --git a/src/version.c b/src/version.c
index 1e3ed45ed..3fa39ae40 100644
--- a/src/version.c
+++ b/src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 275,
/**/
274,
/**/
Reply all
Reply to author
Forward
0 new messages