diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-09 11:19:37 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-09 11:19:37 +0200 |
commit | 8a56bd944a944cf77a0b9f44b59098dae05b07a0 (patch) | |
tree | 2693a0f4599ec4efb02b48f031106794e56cd1d0 /src/nvim/mbyte.h | |
parent | 47b7b471fa0f33550f886dc93976ded97f602292 (diff) | |
parent | d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94 (diff) | |
download | rneovim-8a56bd944a944cf77a0b9f44b59098dae05b07a0.tar.gz rneovim-8a56bd944a944cf77a0b9f44b59098dae05b07a0.tar.bz2 rneovim-8a56bd944a944cf77a0b9f44b59098dae05b07a0.zip |
Merge #10708 'remove DYNAMIC_ICONV'
closes #3457
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, |