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

Support completion for ":find". (Nazri Ramliy)

Cleanup white space.
This commit is contained in:
Bram Moolenaar
2010-07-14 16:52:17 +02:00
parent d43848c0dd
commit cc448b373d
32 changed files with 439 additions and 216 deletions

View File

@@ -2967,7 +2967,7 @@ dialog_callback(
* codepage: use wide function and convert text. */
if (os_version.dwPlatformId == VER_PLATFORM_WIN32_NT
&& enc_codepage >= 0 && (int)GetACP() != enc_codepage)
{
{
WCHAR *wp = (WCHAR *)alloc(IOSIZE * sizeof(WCHAR));
char_u *p;
@@ -4828,7 +4828,7 @@ netbeans_draw_multisign_indicator(int row)
int x;
if (!netbeans_active())
return;
return;
x = 0;
y = TEXT_Y(row);
@@ -4855,10 +4855,10 @@ netbeans_init_winsock()
int wsaerr;
if (WSInitialized)
return;
return;
wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (wsaerr == 0)
WSInitialized = TRUE;
WSInitialized = TRUE;
}
#endif