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/fold.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/fold.h')
-rw-r--r-- | src/nvim/fold.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/fold.h b/src/nvim/fold.h index 2393f4ef47..f35b328fb1 100644 --- a/src/nvim/fold.h +++ b/src/nvim/fold.h @@ -1,12 +1,12 @@ #ifndef NVIM_FOLD_H #define NVIM_FOLD_H -#include <stdio.h> // for FILE +#include <stdio.h> #include "nvim/pos.h" -#include "nvim/garray.h" // for garray_T -#include "nvim/types.h" // for char_u -#include "nvim/buffer_defs.h" // for win_T +#include "nvim/garray.h" +#include "nvim/types.h" +#include "nvim/buffer_defs.h" /* * Info used to pass info about a fold from the fold-detection code to the |