Skip to content

Commit 82e4184

Browse files
committed
patch 7.4.1134
Problem: The arglist test fails on MS-Windows. Solution: Only check for failure of argedit on Unix.
1 parent ef26954 commit 82e4184

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/testdir/test_arglist.vim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,10 @@ function Test_argedit()
226226
argedit a
227227
call assert_equal(['a', 'b'], argv())
228228
call assert_equal('a', expand('%:t'))
229-
call assert_fails('argedit a b', 'E172:')
229+
if has('unix')
230+
" on MS-Windows this would edit file "a b"
231+
call assert_fails('argedit a b', 'E172:')
232+
endif
230233
argedit c
231234
call assert_equal(['a', 'c', 'b'], argv())
232235
0argedit x

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
1134,
744746
/**/
745747
1133,
746748
/**/

0 commit comments

Comments
 (0)