summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-28 18:38:09 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-28 18:38:09 +0200
commitd4404b4391a0cd3ab197e09bee7828c88882f6b2 (patch)
tree9ddb46bf922f2e71581e1f3bc41f26532d107962 /src
parent56c0c4749d58e9331b212c38df46e2993d5d97c1 (diff)
patch 8.1.1771: options test fails on MS-Windowsv8.1.1771
Problem: Options test fails on MS-Windows. Solution: Add correct and incorrect values for 'completeslash'.
Diffstat (limited to 'src')
-rw-r--r--src/testdir/gen_opt_test.vim1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim
index e410feb42d..0a0a16fcf3 100644
--- a/src/testdir/gen_opt_test.vim
+++ b/src/testdir/gen_opt_test.vim
@@ -78,6 +78,7 @@ let test_values = {
\ 'complete': [['', 'w,b'], ['xxx']],
\ 'concealcursor': [['', 'n', 'nvic'], ['xxx']],
\ 'completeopt': [['', 'menu', 'menu,longest'], ['xxx', 'menu,,,longest,']],
+ \ 'completeslash': [['', 'slash', 'backslash'], ['xxx']],
\ 'cryptmethod': [['', 'zip'], ['xxx']],
\ 'cscopequickfix': [['', 's-', 's-,c+,e0'], ['xxx', 's,g,d']],
\ 'debug': [['', 'msg', 'msg', 'beep'], ['xxx']],
diff --git a/src/version.c b/src/version.c
index b0fe67f502..5507f6ac09 100644
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1771,
+/**/
1770,
/**/
1769,