diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-06-17 13:43:22 -0500 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-09 00:18:19 +0200 |
commit | b18ca14ef8f440ed36fbd68dcb4f31541c290050 (patch) | |
tree | 1bc07b8e04f1a78197272446273a42e2abe771c9 /src/nvim/ex_cmds2.c | |
parent | 82b71a30569b1db8e78f38b1bc22fa7b088e16fc (diff) | |
download | rneovim-b18ca14ef8f440ed36fbd68dcb4f31541c290050.tar.gz rneovim-b18ca14ef8f440ed36fbd68dcb4f31541c290050.tar.bz2 rneovim-b18ca14ef8f440ed36fbd68dcb4f31541c290050.zip |
move locale.h include out of vim.h
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index cada3c5818..ea027ba225 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -15,6 +15,9 @@ #include "nvim/vim.h" #include "nvim/ascii.h" +#ifdef HAVE_LOCALE_H +# include <locale.h> +#endif #include "nvim/version_defs.h" #include "nvim/ex_cmds2.h" #include "nvim/buffer.h" |