updated for version 7.4.282
Problem: Test 97 fails on Mac.
Solution: Do not ignore case in file names. (Jun Takimoto)
diff --git a/src/testdir/test97.in b/src/testdir/test97.in
index c25176b..d4ff6d9 100644
--- a/src/testdir/test97.in
+++ b/src/testdir/test97.in
@@ -3,7 +3,10 @@
STARTTEST
:so small.vim
+:" make sure glob() doesn't use the shell
:set shell=doesnotexist
+:" consistent sorting of file names
+:set nofileignorecase
:e test.out
:$put =glob('Xxx\{')
:$put =glob('Xxx\$')
diff --git a/src/version.c b/src/version.c
index 6da67a1..fb0689b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 282,
+/**/
281,
/**/
280,