comparison src/edit.c @ 18671:df141c730008 v8.1.2327

patch 8.1.2327: cannot build with Hangul input Commit: https://github.com/vim/vim/commit/546125869f2959480c9a0f6c448c2092d565ec15 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 21 17:13:31 2019 +0100 patch 8.1.2327: cannot build with Hangul input Problem: Cannot build with Hangul input. Solution: Remove Hangul input support.
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Nov 2019 17:15:04 +0100
parents 8b0114ffde2b
children ac08c7ad9d37
comparison
equal deleted inserted replaced
18670:4658aa8e09fc 18671:df141c730008
4115 int temp; 4115 int temp;
4116 static int disabled_redraw = FALSE; 4116 static int disabled_redraw = FALSE;
4117 4117
4118 #ifdef FEAT_SPELL 4118 #ifdef FEAT_SPELL
4119 check_spell_redraw(); 4119 check_spell_redraw();
4120 #endif
4121 #if defined(FEAT_HANGULIN)
4122 # if defined(ESC_CHG_TO_ENG_MODE)
4123 hangul_input_state_set(0);
4124 # endif
4125 if (composing_hangul)
4126 {
4127 push_raw_key(composing_hangul_buffer, 2);
4128 composing_hangul = 0;
4129 }
4130 #endif 4120 #endif
4131 4121
4132 temp = curwin->w_cursor.col; 4122 temp = curwin->w_cursor.col;
4133 if (disabled_redraw) 4123 if (disabled_redraw)
4134 { 4124 {