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/digraph.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/digraph.h')
-rw-r--r-- | src/nvim/digraph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/digraph.h b/src/nvim/digraph.h index d0f10eaf78..1b73ccaf3f 100644 --- a/src/nvim/digraph.h +++ b/src/nvim/digraph.h @@ -1,8 +1,8 @@ #ifndef NVIM_DIGRAPH_H #define NVIM_DIGRAPH_H -#include "nvim/types.h" // for char_u -#include "nvim/ex_cmds_defs.h" // for exarg_T +#include "nvim/types.h" +#include "nvim/ex_cmds_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "digraph.h.generated.h" |