Skip to content

Commit dcbfa33

Browse files
committed
patch 8.0.0799: missing semicolon
Problem: Missing semicolon. Solution: Add it.
1 parent 63ecdda commit dcbfa33

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/terminal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ term_free_vterm(term_T *term)
16071607
term->tl_winpty_config = NULL;
16081608
if (term->tl_vterm != NULL)
16091609
vterm_free(term->tl_vterm);
1610-
term->tl_vterm = NULL
1610+
term->tl_vterm = NULL;
16111611
}
16121612

16131613
/*

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
799,
772774
/**/
773775
798,
774776
/**/

0 commit comments

Comments
 (0)