vim-patch:7.4.2229

f04507d132

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)
This commit is contained in:
ckelsel
2017-07-10 07:58:40 +08:00
committed by James McCoy
parent 04de6a64e2
commit 2999d7c0e8
4 changed files with 9 additions and 2 deletions

View File

@@ -216,6 +216,9 @@ open_buffer (
# endif
# ifdef S_ISSOCK
|| S_ISSOCK(perm)
# endif
# ifdef OPEN_CHR_FILES
|| (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname))
# endif
))
read_fifo = TRUE;