diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-14 16:52:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-14 16:52:17 +0200 |
commit | cc448b373d580856f92ff7a9e04daf65444b5cd1 (patch) | |
tree | 3cb827a7aa56a93acea0a1201d5754ebcca9b808 /src/os_mswin.c | |
parent | d43848c0dd0603248405bb93364866cd495f0547 (diff) | |
download | vim-git-cc448b373d580856f92ff7a9e04daf65444b5cd1.tar.gz |
Support completion for ":find". (Nazri Ramliy)
Cleanup white space.
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index 562dca1aa..6b7e896cb 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -1240,10 +1240,10 @@ vim_open_clipboard(void) while (!OpenClipboard(NULL)) { - if (delay > 500) - return FALSE; /* waited too long, give up */ - Sleep(delay); - delay *= 2; /* wait for 10, 20, 40, 80, etc. msec */ + if (delay > 500) + return FALSE; /* waited too long, give up */ + Sleep(delay); + delay *= 2; /* wait for 10, 20, 40, 80, etc. msec */ } return TRUE; } |