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 a90998d commit 541faf7Copy full SHA for 541faf7
2 files changed
src/testdir/test_sound.vim
@@ -27,7 +27,9 @@ func Test_play_silent()
27
28
" play without callback
29
let id1 = sound_playfile(fname)
30
- call assert_true(id1 > 0)
+ if id1 == 0
31
+ throw 'Skipped: playing a sound is not working'
32
+ endif
33
34
" play until the end
35
let id2 = sound_playfile(fname, 'PlayCallback')
src/version.c
@@ -777,6 +777,8 @@ static char *(features[]) =
777
778
static int included_patches[] =
779
{ /* Add new patch number below this line */
780
+/**/
781
+ 1508,
782
/**/
783
1507,
784
0 commit comments