diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-04 21:36:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-04 21:36:05 +0100 |
commit | 6e35a11490f1f9061677671220ce4cb73176b44a (patch) | |
tree | 2bca90909b0c22e8e69eaeb1240cf9558de34702 /src/vim.h | |
parent | 8a3bb56230d220b8e1b4dcca517ed95f5341b8c7 (diff) | |
download | vim-git-6e35a11490f1f9061677671220ce4cb73176b44a.tar.gz |
patch 8.0.1567: cannot build Win32 GUI without IMEv8.0.1567
Problem: Cannot build Win32 GUI without IME. (John Marriott)
Solution: Adjust when IME_WITHOUT_XIM and HAVE_INPUT_METHOD are defined and
use it in a few more places.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -2118,18 +2118,16 @@ typedef enum { # define USE_MCH_ERRMSG #endif -# if (defined(FEAT_MBYTE_IME) \ - && (!defined(FEAT_GUI_W32) \ - || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))) \ - || (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC)) -/* Whether IME is supported when XIM is not used, im_get_status() is defined in - * mbyte.c. */ +# if defined(FEAT_MBYTE) && defined(FEAT_EVAL) \ + && ((!defined(FEAT_GUI_W32) \ + || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) \ + || (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC))) +/* Whether IME is supported by im_get_status() defined in mbyte.c. */ # define IME_WITHOUT_XIM #endif #if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \ || defined(IME_WITHOUT_XIM) \ - || defined(FEAT_GUI_W32) \ || defined(FEAT_GUI_MAC)) /* im_set_active() is available */ # define HAVE_INPUT_METHOD |