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 6d150f7 commit 9980b37Copy full SHA for 9980b37
2 files changed
src/testdir/test_writefile.vim
@@ -105,6 +105,10 @@ 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')
+ if filewritable('/dev/stdout')
+ " Just check that this doesn't cause an error.
110
+ call writefile(['one'], '/dev/stdout')
111
+ else
112
+ throw 'Skipped: /dev/stdout is not writable'
113
+ endif
114
endfunc
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 1744,
766
/**/
767
1743,
768
0 commit comments