diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-07-10 07:58:40 +0800 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-07-13 23:09:03 -0400 |
commit | 2999d7c0e89087f76711e914eb65af55578a6691 (patch) | |
tree | 6cfe164c90b6c31521cae5a31fd9eb475e6022cd /src/nvim/vim.h | |
parent | 04de6a64e2f7b3b235acd4ab779bfed30e59451f (diff) | |
download | rneovim-2999d7c0e89087f76711e914eb65af55578a6691.tar.gz rneovim-2999d7c0e89087f76711e914eb65af55578a6691.tar.bz2 rneovim-2999d7c0e89087f76711e914eb65af55578a6691.zip |
vim-patch:7.4.2229
https://github.com/vim/vim/commit/f04507d132fbcb63999167ec006fc6e700b5af4f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 20 15:05:39 2016 +0200
patch 7.4.2229
Problem: Startup test fails on Solaris.
Solution: Recognize a character device. (Danek Duvall)
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index f29ccdd296..5d2c27a2f4 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -319,4 +319,8 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext() // Lowest number used for window ID. Cannot have this many windows per tab. #define LOWEST_WIN_ID 1000 +#if defined(__FreeBSD__) && defined(S_ISCHR) +# define OPEN_CHR_FILES +#endif + #endif /* NVIM_VIM_H */ |