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 3323835 commit c9cd046Copy full SHA for c9cd046
src/option.c
@@ -7036,6 +7036,9 @@ check_colorcolumn(wp)
7036
int i;
7037
int j = 0;
7038
7039
+ if (wp->w_buffer == NULL)
7040
+ return NULL; /* buffer was closed */
7041
+
7042
for (s = wp->w_p_cc; *s != NUL && count < 255;)
7043
{
7044
if (*s == '-' || *s == '+')
src/version.c
@@ -709,6 +709,8 @@ static char *(features[]) =
709
710
static int included_patches[] =
711
{ /* Add new patch number below this line */
712
+/**/
713
+ 316,
714
/**/
715
315,
716
0 commit comments