diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-09 03:59:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-09 03:59:55 +0200 |
commit | cc8f640fb16a4a697e2ad380b9973048d5142a33 (patch) | |
tree | 1952c82321810c475c63ba3a8df5658ccc2d8b0b /src/nvim/ex_cmds.h | |
parent | 3a6b8c28c813f8e65851c8e89c7cf56b4d6cf03f (diff) | |
parent | 967fa96eb2ca263c0fefd9e9be74e9862e59d740 (diff) | |
download | rneovim-cc8f640fb16a4a697e2ad380b9973048d5142a33.tar.gz rneovim-cc8f640fb16a4a697e2ad380b9973048d5142a33.tar.bz2 rneovim-cc8f640fb16a4a697e2ad380b9973048d5142a33.zip |
Merge #6478 from ZyX-I/conv-fixes
Remove conversions which are not needed when &encoding is UTF-8
Diffstat (limited to 'src/nvim/ex_cmds.h')
-rw-r--r-- | src/nvim/ex_cmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.h b/src/nvim/ex_cmds.h index 792e2f772f..b564cde56c 100644 --- a/src/nvim/ex_cmds.h +++ b/src/nvim/ex_cmds.h @@ -6,8 +6,8 @@ #include "nvim/os/time.h" #include "nvim/pos.h" #include "nvim/eval/typval.h" -#include "nvim/buffer_defs.h" // for buf_T and win_T -#include "nvim/ex_cmds_defs.h" // for exarg_T +#include "nvim/buffer_defs.h" +#include "nvim/ex_cmds_defs.h" // flags for do_ecmd() #define ECMD_HIDE 0x01 // don't free the current buffer |