1
0
forked from aniani/vim

patch 8.0.0799: missing semicolon

Problem:    Missing semicolon.
Solution:   Add it.
This commit is contained in:
Bram Moolenaar
2017-07-28 23:16:13 +02:00
parent 63ecddab6d
commit dcbfa33fa1
2 changed files with 3 additions and 1 deletions

View File

@@ -1607,7 +1607,7 @@ term_free_vterm(term_T *term)
term->tl_winpty_config = NULL;
if (term->tl_vterm != NULL)
vterm_free(term->tl_vterm);
term->tl_vterm = NULL
term->tl_vterm = NULL;
}
/*

View File

@@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
799,
/**/
798,
/**/