# HG changeset patch # User Bram Moolenaar # Date 1593026104 -7200 # Node ID d387db9d9b68aff73854c6d3b8a4bffe678ccf18 # Parent a7132f388e1afb92f0a271d8a579e45f6b4e33c9 patch 8.2.1050: missing change in struct Commit: https://github.com/vim/vim/commit/65a8ed37f7bc61fbe5c612a7b0eb0dfc16ad3e11 Author: Bram Moolenaar Date: Wed Jun 24 21:00:25 2020 +0200 patch 8.2.1050: missing change in struct Problem: Missing change in struct. Solution: Add missing change. diff --git a/src/ex_cmds.h b/src/ex_cmds.h --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1841,6 +1841,9 @@ struct exarg char_u *nextcmd; // next command (NULL if none) char_u *cmd; // the name of the command (except for :make) char_u **cmdlinep; // pointer to pointer of allocated cmdline +#ifdef FEAT_EVAL + char_u *cmdline_tofree; // free later +#endif cmdidx_T cmdidx; // the index for the command long argt; // flags for the command int skip; // don't execute the command, only parse it diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1050, +/**/ 1049, /**/ 1048,