diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-12-09 21:34:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-12-09 21:34:53 +0000 |
commit | 293ee4d421cd55f4a3c014c1c26edf02f718cc83 (patch) | |
tree | ae4856e718b752ea0c6c807912bfbb51967fae80 /src/gui_w32.c | |
parent | 741b07e0092eb6d7b81c9cbe149196c6cf9d5bbe (diff) | |
download | vim-git-293ee4d421cd55f4a3c014c1c26edf02f718cc83.tar.gz |
updated for version 7.0021v7.0021
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 |