aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-11-01 18:34:42 +0100
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-11-06 00:18:26 +0100
commit8c5efd62ac97b0a44fb5a68e4fd91997fcede000 (patch)
treed5f696072e4f2879cd77d48d4d8e3bde0a6bd14e /src/nvim/vim.h
parent3972715ce791466c1ea3c873f78e95e13eba6e58 (diff)
downloadrneovim-8c5efd62ac97b0a44fb5a68e4fd91997fcede000.tar.gz
rneovim-8c5efd62ac97b0a44fb5a68e4fd91997fcede000.tar.bz2
rneovim-8c5efd62ac97b0a44fb5a68e4fd91997fcede000.zip
iconv: re-enable
This seems to have been disabled in the transition from vim to neovim, re-enable it.
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 47ed223e81..a766d71553 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -381,38 +381,6 @@ enum {
#include "nvim/buffer_defs.h" /* buffer and windows */
#include "nvim/ex_cmds_defs.h" /* Ex command defines */
-# ifdef USE_ICONV
-# ifndef EILSEQ
-# define EILSEQ 123
-# endif
-# ifdef DYNAMIC_ICONV
-/* On Win32 iconv.dll is dynamically loaded. */
-# define ICONV_ERRNO (*iconv_errno())
-# define ICONV_E2BIG 7
-# define ICONV_EINVAL 22
-# define ICONV_EILSEQ 42
-# else
-# define ICONV_ERRNO errno
-# define ICONV_E2BIG E2BIG
-# define ICONV_EINVAL EINVAL
-# define ICONV_EILSEQ EILSEQ
-# endif
-# endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
# define SET_NO_HLSEARCH(flag) no_hlsearch = (flag); set_vim_var_nr( \
VV_HLSEARCH, !no_hlsearch)