patch 9.2.0275: tests: test_options.vim fails
Commit:
https://github.com/vim/vim/commit/4cc3ab7401357ac7784fe519d62cca6860d98339
Author: Christian Brabandt <[email protected]>
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 <[email protected]>
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,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1w7dNi-00FEFt-Rq%40256bit.org.