commit | f04507d132fbcb63999167ec006fc6e700b5af4f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Aug 20 15:05:39 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Aug 20 15:05:39 2016 +0200 |
tree | fdbe08b22d341af7c2178126f8b32bcae5d16c5c | |
parent | 9e4d8215d386100ab660d7d11e6620fd148b605e [diff] [blame] |
patch 7.4.2229 Problem: Startup test fails on Solaris. Solution: Recognize a character device. (Danek Duvall)
diff --git a/src/buffer.c b/src/buffer.c index 4f68882..184f09f 100644 --- a/src/buffer.c +++ b/src/buffer.c
@@ -220,6 +220,9 @@ # 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; if (read_fifo)