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/eval.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/eval.c')
-rw-r--r-- | src/nvim/eval.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index da14a97e04..336bdf4e8a 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -17,6 +17,9 @@ #include "nvim/vim.h" #include "nvim/ascii.h" +#ifdef HAVE_LOCALE_H +# include <locale.h> +#endif #include "nvim/eval.h" #include "nvim/buffer.h" #include "nvim/charset.h" |