comparison src/screen.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 bbea1f108187
children 7f066dff9d70
comparison
equal deleted inserted replaced
18670:4658aa8e09fc 18671:df141c730008
4039 msg_puts_attr(" IM", attr); 4039 msg_puts_attr(" IM", attr);
4040 # else 4040 # else
4041 msg_puts_attr(" XIM", attr); 4041 msg_puts_attr(" XIM", attr);
4042 # endif 4042 # endif
4043 #endif 4043 #endif
4044 #if defined(FEAT_HANGULIN) && defined(FEAT_GUI)
4045 if (gui.in_use)
4046 {
4047 if (hangul_input_state_get())
4048 {
4049 /* HANGUL */
4050 if (enc_utf8)
4051 msg_puts_attr(" \355\225\234\352\270\200", attr);
4052 else
4053 msg_puts_attr(" \307\321\261\333", attr);
4054 }
4055 }
4056 #endif
4057 /* CTRL-X in Insert mode */ 4044 /* CTRL-X in Insert mode */
4058 if (edit_submode != NULL && !shortmess(SHM_COMPLETIONMENU)) 4045 if (edit_submode != NULL && !shortmess(SHM_COMPLETIONMENU))
4059 { 4046 {
4060 /* These messages can get long, avoid a wrap in a narrow 4047 /* These messages can get long, avoid a wrap in a narrow
4061 * window. Prefer showing edit_submode_extra. */ 4048 * window. Prefer showing edit_submode_extra. */