comparison src/os_win16.c @ 3143:314d9368069e v7.3.342

updated for version 7.3.342 Problem: Code not in Vim style. Solution: Fix the style. (Elias Diem)
author Bram Moolenaar <bram@vim.org>
date Thu, 20 Oct 2011 18:24:22 +0200
parents bfade53bcafb
children 286ba0251c0a
comparison
equal deleted inserted replaced
3142:aae92defc652 3143:314d9368069e
241 else 241 else
242 { 242 {
243 /* Wait for the command to terminate before continuing */ 243 /* Wait for the command to terminate before continuing */
244 while (GetModuleUsage((HINSTANCE)h_module) > 0 && again ) 244 while (GetModuleUsage((HINSTANCE)h_module) > 0 && again )
245 { 245 {
246 while( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) && again ) 246 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && again)
247 { 247 {
248 if(msg.message == WM_QUIT) 248 if (msg.message == WM_QUIT)
249 249
250 { 250 {
251 PostQuitMessage(msg.wParam); 251 PostQuitMessage(msg.wParam);
252 again = FALSE; 252 again = FALSE;
253 } 253 }