From 65a8ed37f7bc61fbe5c612a7b0eb0dfc16ad3e11 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Jun 2020 21:00:25 +0200 Subject: patch 8.2.1050: missing change in struct Problem: Missing change in struct. Solution: Add missing change. --- src/ex_cmds.h | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/ex_cmds.h b/src/ex_cmds.h index f68c4fd0b..1c1956239 100644 --- 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 index d39c1b07c..ba3e62155 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1050, /**/ 1049, /**/ -- cgit v1.2.1