We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819edbe commit 83799a7Copy full SHA for 83799a7
2 files changed
src/testdir/test_writefile.vim
@@ -100,3 +100,11 @@ func Test_writefile_sync_arg()
100
call writefile(['two'], 'Xtest', 'S')
101
call delete('Xtest')
102
endfunc
103
+
104
+func Test_writefile_sync_dev_stdout()
105
+ if !has('unix')
106
+ return
107
+ endif
108
+ " Just check that this doesn't cause an error.
109
+ call writefile(['one'], '/dev/stdout')
110
+endfunc
src/version.c
@@ -771,6 +771,8 @@ static char *(features[]) =
771
772
static int included_patches[] =
773
{ /* Add new patch number below this line */
774
+/**/
775
+ 1339,
776
/**/
777
1338,
778
0 commit comments