1
0
forked from aniani/vim

patch 8.1.2327: cannot build with Hangul input

Problem:    Cannot build with Hangul input.
Solution:   Remove Hangul input support.
This commit is contained in:
Bram Moolenaar
2019-11-21 17:13:31 +01:00
parent 10455d43fe
commit 546125869f
21 changed files with 27 additions and 2006 deletions

View File

@@ -863,14 +863,6 @@ gui_x11_key_hit_cb(
len = 0;
#endif
#ifdef FEAT_HANGULIN
if ((key_sym == XK_space) && (ev_press->state & ShiftMask))
{
hangul_input_state_toggle();
goto theend;
}
#endif
if (key_sym == XK_space)
string[0] = ' '; /* Otherwise Ctrl-Space doesn't work */
@@ -1638,9 +1630,6 @@ gui_mch_open(void)
* changed them) */
highlight_gui_started(); /* re-init colors and fonts */
#ifdef FEAT_HANGULIN
hangul_keyboard_set();
#endif
#ifdef FEAT_XIM
xim_init();
#endif