diff options
author | erw7 <erw7.github@gmail.com> | 2019-08-06 12:44:22 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2019-08-06 12:44:22 +0900 |
commit | d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94 (patch) | |
tree | e52b3cf2fafbef6310ff82bb15e78bc90b124190 /src/nvim/mbyte.h | |
parent | 067a39ba854cc02a750911ead968a744b2769aac (diff) | |
download | rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.tar.gz rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.tar.bz2 rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.zip |
remove DYNAMIC_ICONV
Diffstat (limited to 'src/nvim/mbyte.h')
-rw-r--r-- | src/nvim/mbyte.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.h b/src/nvim/mbyte.h index ed48705c6d..536d58be1f 100644 --- a/src/nvim/mbyte.h +++ b/src/nvim/mbyte.h @@ -63,7 +63,7 @@ typedef enum { typedef struct { int vc_type; ///< Zero or more ConvFlags. int vc_factor; ///< Maximal expansion factor. -# ifdef USE_ICONV +# ifdef HAVE_ICONV iconv_t vc_fd; ///< Value for CONV_ICONV. # endif bool vc_fail; ///< What to do with invalid characters: if true, fail, |