changeset 20998:d387db9d9b68 v8.2.1050

patch 8.2.1050: missing change in struct Commit: https://github.com/vim/vim/commit/65a8ed37f7bc61fbe5c612a7b0eb0dfc16ad3e11 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Jun 2020 21:15:04 +0200
parents a7132f388e1a
children 0c32e18e0a19
files src/ex_cmds.h src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,