0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

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;
}
/*