0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 7.4.1333

Problem:    Channel test fails on non-darwin builds.
Solution:   Add the "osx" feature and test for that. (Kazunobu Kuriyama)
This commit is contained in:
Bram Moolenaar
2016-02-16 14:07:40 +01:00
parent acd58ef676
commit f8df7addc5
4 changed files with 9 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ else
finish
endif
let s:chopt = has('macunix') ? {'waittime' : 1} : {}
let s:chopt = has('osx') ? {'waittime' : 1} : {}
" Run "testfunc" after sarting the server and stop the server afterwards.
func s:run_server(testfunc)