Skip to content

Commit 4cc3ab7

Browse files
committed
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]>
1 parent 309332a commit 4cc3ab7

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/tabpanel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ tabpanelopt_changed(void)
8383
{
8484
p += 8;
8585
new_columns = getdigits(&p);
86-
if (new_columns < 1 || new_columns > 1000)
86+
if (new_columns < 0 || new_columns > 1000)
8787
return FAIL;
8888
}
8989
else if (STRNCMP(p, "vert", 4) == 0)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,8 @@ static char *(features[]) =
734734

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
275,
737739
/**/
738740
274,
739741
/**/

0 commit comments

Comments
 (0)