Skip to content

Commit

Permalink
patch 8.0.0799: missing semicolon
Browse files Browse the repository at this point in the history
Problem:    Missing semicolon.
Solution:   Add it.
  • Loading branch information
brammool authored and dpelle committed Jul 31, 2017
1 parent 0343884 commit 735b3c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/*
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
799,
/**/
798,
/**/
Expand Down

0 comments on commit 735b3c6

Please sign in to comment.