summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-01-20 12:44:28 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-20 12:44:28 +0000
commit4ac893f32109f29349661322676e5b81eb169b74 (patch)
treeaa76646a622243c7cacab5ed3b592202c2079615 /src/vim.h
parentfc6ccebea668c49e9e617e0657421b6a8ed9df1e (diff)
downloadvim-git-4ac893f32109f29349661322676e5b81eb169b74.tar.gz
patch 8.2.4153: MS-Windows: Global IME is no longer supportedv8.2.4153
Problem: MS-Windows: Global IME is no longer supported. Solution: Remove the Global IME implementation. (Ken Takata, closes #9562)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/vim.h b/src/vim.h
index cb8af5de2..357873c56 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2252,17 +2252,15 @@ typedef enum {
#endif
# if defined(FEAT_EVAL) \
- && (!defined(FEAT_GUI_MSWIN) \
- || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))
+ && (!defined(FEAT_GUI_MSWIN) || !defined(FEAT_MBYTE_IME))
// Whether IME is supported by im_get_status() defined in mbyte.c.
-// For Win32 GUI it's in gui_w32.c when FEAT_MBYTE_IME or GLOBAL_IME is defined.
+// For Win32 GUI it's in gui_w32.c when FEAT_MBYTE_IME is defined.
# define IME_WITHOUT_XIM
#endif
#if defined(FEAT_XIM) \
|| defined(IME_WITHOUT_XIM) \
- || (defined(FEAT_GUI_MSWIN) \
- && (defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))
+ || (defined(FEAT_GUI_MSWIN) && defined(FEAT_MBYTE_IME))
// im_set_active() is available
# define HAVE_INPUT_METHOD
#endif