comparison src/ui.c @ 15655:2202ab00e9f9 v8.1.0835

patch 8.1.0835: GUI build fails on MS-Windows commit https://github.com/vim/vim/commit/3e9d4d85c4b5602f072be76b51865050d51fb3c4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 27 17:08:40 2019 +0100 patch 8.1.0835: GUI build fails on MS-Windows Problem: GUI build fails on MS-Windows. Solution: Adjust #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Jan 2019 17:15:05 +0100
parents 59a1ff689b4d
children 31367ce5aac7
comparison
equal deleted inserted replaced
15654:e36cd31b990c 15655:2202ab00e9f9
397 // estimate the elapsed time 397 // estimate the elapsed time
398 elapsed_time += wait_time; 398 elapsed_time += wait_time;
399 #endif 399 #endif
400 400
401 if ((resize_func != NULL && resize_func(TRUE)) 401 if ((resize_func != NULL && resize_func(TRUE))
402 #ifdef FEAT_CLIENTSERVER 402 #if defined(FEAT_CLIENTSERVER) && defined(UNIX)
403 || server_waiting() 403 || server_waiting()
404 #endif 404 #endif
405 #ifdef MESSAGE_QUEUE 405 #ifdef MESSAGE_QUEUE
406 || interrupted 406 || interrupted
407 #endif 407 #endif