comparison src/ex_cmds.h @ 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 8fa783f2c69c
children 5c92877092f9
comparison
equal deleted inserted replaced
20997:a7132f388e1a 20998:d387db9d9b68
1839 { 1839 {
1840 char_u *arg; // argument of the command 1840 char_u *arg; // argument of the command
1841 char_u *nextcmd; // next command (NULL if none) 1841 char_u *nextcmd; // next command (NULL if none)
1842 char_u *cmd; // the name of the command (except for :make) 1842 char_u *cmd; // the name of the command (except for :make)
1843 char_u **cmdlinep; // pointer to pointer of allocated cmdline 1843 char_u **cmdlinep; // pointer to pointer of allocated cmdline
1844 #ifdef FEAT_EVAL
1845 char_u *cmdline_tofree; // free later
1846 #endif
1844 cmdidx_T cmdidx; // the index for the command 1847 cmdidx_T cmdidx; // the index for the command
1845 long argt; // flags for the command 1848 long argt; // flags for the command
1846 int skip; // don't execute the command, only parse it 1849 int skip; // don't execute the command, only parse it
1847 int forceit; // TRUE if ! present 1850 int forceit; // TRUE if ! present
1848 int addr_count; // the number of addresses given 1851 int addr_count; // the number of addresses given