0
0
mirror of https://github.com/vim/vim.git synced 2025-10-07 05:54:16 -04:00

updated for version 7.0021

This commit is contained in:
Bram Moolenaar
2004-12-09 21:34:53 +00:00
parent 741b07e009
commit 293ee4d421
109 changed files with 3216 additions and 1368 deletions

View File

@@ -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();
}
@@ -1410,20 +1409,6 @@ gui_mch_set_bg_color(guicolor_T color)
#endif
#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
*/