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_getln.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_getln.h')
-rw-r--r-- | src/nvim/ex_getln.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_getln.h b/src/nvim/ex_getln.h index a29c8297d5..051564fbe1 100644 --- a/src/nvim/ex_getln.h +++ b/src/nvim/ex_getln.h @@ -3,9 +3,9 @@ #include "nvim/eval/typval.h" #include "nvim/ex_cmds.h" -#include "nvim/ex_cmds_defs.h" // for exarg_T -#include "nvim/os/time.h" // for Timestamp -#include "nvim/regexp_defs.h" // for regmatch_T +#include "nvim/ex_cmds_defs.h" +#include "nvim/os/time.h" +#include "nvim/regexp_defs.h" /* Values for nextwild() and ExpandOne(). See ExpandOne() for meaning. */ #define WILD_FREE 1 |