We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 309332a commit 4cc3ab7Copy full SHA for 4cc3ab7
2 files changed
src/tabpanel.c
@@ -83,7 +83,7 @@ tabpanelopt_changed(void)
83
{
84
p += 8;
85
new_columns = getdigits(&p);
86
- if (new_columns < 1 || new_columns > 1000)
+ if (new_columns < 0 || new_columns > 1000)
87
return FAIL;
88
}
89
else if (STRNCMP(p, "vert", 4) == 0)
src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =
734
735
static int included_patches[] =
736
{ /* Add new patch number below this line */
737
+/**/
738
+ 275,
739
/**/
740
274,
741
0 commit comments