summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-19 20:38:15 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-19 20:38:15 +0200
commitbbfd1562aeaa5b40b6451effc399846b692d6992 (patch)
tree7d4be1eb8c581c3694b1b8dc75dd358aded41948
parentcfb381421f8be7d6cb4e7dac5b827b23467d3e53 (diff)
patch 8.1.2185: syntax test failsv8.1.2185
Problem: Syntax test fails. Solution: Add missing file patch.
-rw-r--r--src/testdir/test_syntax.vim4
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_syntax.vim b/src/testdir/test_syntax.vim
index 6705c57b5f..4f431d0cc3 100644
--- a/src/testdir/test_syntax.vim
+++ b/src/testdir/test_syntax.vim
@@ -555,6 +555,7 @@ func Test_syntax_c()
\ "\tfor (int i = 0; i < count; ++i) {",
\ "\t break;",
\ "\t}",
+ \ "\tNote: asdf",
\ '}',
\ ], 'Xtest.c')
@@ -562,7 +563,8 @@ func Test_syntax_c()
" response to t_RB corrects it to "light".
let $COLORFGBG = '15;0'
- let buf = RunVimInTerminal('Xtest.c', {})
+ let buf = RunVimInTerminal('Xtest.c', #{rows: 22})
+ call term_sendkeys(buf, ":syn keyword Search Note\r")
call term_sendkeys(buf, ":set hlsearch\r")
call term_sendkeys(buf, "/endif\r")
call term_sendkeys(buf, "vjfC")
diff --git a/src/version.c b/src/version.c
index 447f761e04..dd957cd39f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2185,
+/**/
2184,
/**/
2183,