{
curbuf->b_p_bin = save_bin;
if (retval == OK)
+ // don't add READ_FIFO here, otherwise we won't be able to
+ // detect the encoding
retval = read_buffer(FALSE, eap, flags);
}
#endif
goto theend;
}
}
-
- if (!read_stdin && !read_buffer && !read_fifo)
- {
#if defined(UNIX) || defined(VMS)
+ if (!read_stdin && fname != NULL)
/*
* On Unix it is possible to read a directory, so we have to
* check for it before the mch_open().
*/
perm = mch_getperm(fname);
+#endif
+
+ if (!read_stdin && !read_buffer && !read_fifo)
+ {
+#if defined(UNIX) || defined(VMS)
if (perm >= 0 && !S_ISREG(perm) // not a regular file ...
&& !S_ISFIFO(perm) // ... or fifo
&& !S_ISSOCK(perm) // ... or socket
call delete('Xtestout')
endfunc
+func Test_detect_fifo()
+ CheckUnix
+ " Using bash/zsh's process substitution.
+ if executable('bash')
+ set shell=bash
+ elseif executable('zsh')
+ set shell=zsh
+ else
+ throw 'Skipped: bash or zsh is required'
+ endif
+ let linesin = ['one', 'two']
+ call writefile(linesin, 'Xtestin_fifo', 'D')
+ let after = [
+ \ 'call writefile(split(execute(":mess"), "\\n"), "Xtestout")',
+ \ 'quit!',
+ \ ]
+ if RunVim([], after, '<(cat Xtestin_fifo)')
+ let lines = readfile('Xtestout')
+ call assert_match('\[fifo\]', lines[0])
+ call assert_match('\[fifo\]', lines[1])
+ else
+ call assert_equal('', 'RunVim failed.')
+ endif
+
+ call delete('Xtestout')
+endfunc
+
func Test_detect_ambiwidth()
CheckRunVimInTerminal
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1139,
/**/
1138,
/**/