forked from aniani/vim
patch 8.0.0799: missing semicolon
Problem: Missing semicolon. Solution: Add it.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
799,
|
||||
/**/
|
||||
798,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user