diff options
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 0afa12de2..461dcefc5 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -789,8 +789,7 @@ _WndProc( break; } #ifdef MSWIN_FIND_REPLACE - else - if (uMsg == s_findrep_msg && s_findrep_msg != 0) + else if (uMsg == s_findrep_msg && s_findrep_msg != 0) { _OnFindRepl(); } @@ -1411,20 +1410,6 @@ gui_mch_set_bg_color(guicolor_T color) #include <imm.h> /* - * display composition string(korean) - */ - static void -DisplayCompStringOpaque(char_u *s, int len) -{ - int OldBkMode = GetBkMode(s_hdc); - - SetBkMode(s_hdc, OPAQUE); - gui_outstr_nowrap(s, len, GUI_MON_TRS_CURSOR, - (guicolor_T)0, (guicolor_T)0, 0); - SetBkMode(s_hdc, OldBkMode); -} - -/* * handle WM_IME_NOTIFY message */ static LRESULT |