comparison src/evalfunc.c @ 18742:e9b2ade1adbd v8.1.2361

patch 8.1.2361: MS-Windows: test failures related to VIMDLL Commit: https://github.com/vim/vim/commit/310c32e8920140f0db747c6c6eb06b1ee53cdb5a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 29 23:15:25 2019 +0100 patch 8.1.2361: MS-Windows: test failures related to VIMDLL Problem: MS-Windows: test failures related to VIMDLL. Solution: Adjust code and tests. (Ken Takata, closes https://github.com/vim/vim/issues/5283)
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 Nov 2019 23:30:04 +0100
parents e0cd10f750e7
children 49b78d6465e5
comparison
equal deleted inserted replaced
18741:3f42c89cf06c 18742:e9b2ade1adbd
3353 "extra_search", 3353 "extra_search",
3354 #endif 3354 #endif
3355 #ifdef FEAT_SEARCHPATH 3355 #ifdef FEAT_SEARCHPATH
3356 "file_in_path", 3356 "file_in_path",
3357 #endif 3357 #endif
3358 #ifdef FEAT_FILTERPIPE 3358 #if defined(FEAT_FILTERPIPE) && !defined(VIMDLL)
3359 "filterpipe", 3359 "filterpipe",
3360 #endif 3360 #endif
3361 #ifdef FEAT_FIND_ID 3361 #ifdef FEAT_FIND_ID
3362 "find_in_path", 3362 "find_in_path",
3363 #endif 3363 #endif
3816 n = use_conpty(); 3816 n = use_conpty();
3817 #endif 3817 #endif
3818 #ifdef FEAT_CLIPBOARD 3818 #ifdef FEAT_CLIPBOARD
3819 else if (STRICMP(name, "clipboard_working") == 0) 3819 else if (STRICMP(name, "clipboard_working") == 0)
3820 n = clip_star.available; 3820 n = clip_star.available;
3821 #endif
3822 #ifdef VIMDLL
3823 else if (STRICMP(name, "filterpipe") == 0)
3824 n = gui.in_use || gui.starting;
3821 #endif 3825 #endif
3822 } 3826 }
3823 3827
3824 rettv->vval.v_number = n; 3828 rettv->vval.v_number = n;
3825 } 3829 }