summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-23 17:35:55 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-23 17:35:55 +0200
commite09244ee3567d658c293fb1ae0d47a1a8be870ac (patch)
treeedbc9791337e26b682d310c73e5dc43587426919
parent7e800c6047c8a9cc3e5cbc019a4dc91ec36616b1 (diff)
patch 8.1.1368: modeline test fails with python but without pythonhomev8.1.1368
Problem: Modeline test fails with python but without pythonhome. Solution: Correct test argument.
-rw-r--r--src/testdir/test_modeline.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_modeline.vim b/src/testdir/test_modeline.vim
index c3c624d266..fb3628b273 100644
--- a/src/testdir/test_modeline.vim
+++ b/src/testdir/test_modeline.vim
@@ -127,7 +127,7 @@ func Test_modeline_fails_always()
call s:modeline_fails('patchexpr', 'patchexpr=Something()', 'E520:')
call s:modeline_fails('printexpr', 'printexpr=Something()', 'E520:')
call s:modeline_fails('pythondll', 'pythondll=Something()', 'E520:')
- call s:modeline_fails('pythonhome', 'pythondll=Something()', 'E520:')
+ call s:modeline_fails('pythonhome', 'pythonhome=Something()', 'E520:')
call s:modeline_fails('pythonthreedll', 'pythonthreedll=Something()', 'E520:')
call s:modeline_fails('pythonthreehome', 'pythonthreehome=Something()', 'E520:')
call s:modeline_fails('pyxversion', 'pyxversion=Something()', 'E520:')
diff --git a/src/version.c b/src/version.c
index 7c548bdbad..6286a7a384 100644
--- a/src/version.c
+++ b/src/version.c
@@ -768,6 +768,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1368,
+/**/
1367,
/**/
1366,