diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-14 11:48:07 +0100 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-19 19:47:27 +0100 |
commit | b716b047e0926cd510e4ba4455b29f388caff749 (patch) | |
tree | ebf2ef27cdca16c78229afe716bd3da7b323e084 /src/nvim/ex_cmds_defs.h | |
parent | c03913c991787eb81de8832fccfe328ff9a86e9c (diff) | |
download | rneovim-b716b047e0926cd510e4ba4455b29f388caff749.tar.gz rneovim-b716b047e0926cd510e4ba4455b29f388caff749.tar.bz2 rneovim-b716b047e0926cd510e4ba4455b29f388caff749.zip |
Remove long_u: ex_docmd.c: Refactor long_u.
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r-- | src/nvim/ex_cmds_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 3f3ef8b275..1b920511b6 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -96,7 +96,7 @@ struct exarg { char_u *cmd; ///< the name of the command (except for :make) char_u **cmdlinep; ///< pointer to pointer of allocated cmdline cmdidx_T cmdidx; ///< the index for the command - long argt; ///< flags for the command + uint32_t argt; ///< flags for the command int skip; ///< don't execute the command, only parse it int forceit; ///< TRUE if ! present int addr_count; ///< the number of addresses given |