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/move.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/move.h')
-rw-r--r-- | src/nvim/move.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/move.h b/src/nvim/move.h index 1cdf1f6f52..00fbcc580f 100644 --- a/src/nvim/move.h +++ b/src/nvim/move.h @@ -2,8 +2,8 @@ #define NVIM_MOVE_H #include <stdbool.h> -#include "nvim/buffer_defs.h" // for win_T -#include "nvim/pos.h" // for linenr_T +#include "nvim/buffer_defs.h" +#include "nvim/pos.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "move.h.generated.h" |