summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2010-09-29 16:55:49 +0200
committerBram Moolenaar <bram@vim.org>2010-09-29 16:55:49 +0200
commit591d0531425980d3458bd7380df4d8144d2c1dc5 (patch)
tree6151be9330962bf988d8550bb6f1c73ae256c2ef
parent91cdb42c49877ebeb0a8c9c1631c91c57b697f6e (diff)
downloadvim-591d0531425980d3458bd7380df4d8144d2c1dc5.tar.gz
updated for version 7.3.015v7.3.015v7-3-015
Problem: Test is using error message that no longer exists. Solution: Change E106 to E121. (Dominique Pelle)
-rw-r--r--src/testdir/test49.vim4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test49.vim b/src/testdir/test49.vim
index 3b0982a6..5e24e302 100644
--- a/src/testdir/test49.vim
+++ b/src/testdir/test49.vim
@@ -1,6 +1,6 @@
" Vim script language tests
" Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com>
-" Last Change: 2006 Apr 28
+" Last Change: 2010 Sep 29
"-------------------------------------------------------------------------------
" Test environment {{{1
@@ -8711,7 +8711,7 @@ try
endif
else
if cmd == "let"
- let match = MATCH(0, thrmsg, 'E106', "Unknown variable")
+ let match = MATCH(0, thrmsg, 'E121', "Undefined variable")
elseif cmd == "unlet"
let match = MATCH(0, thrmsg, 'E108', "No such variable")
endif
diff --git a/src/version.c b/src/version.c
index ad47acc5..e24fb6bb 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 15,
+/**/
14,
/**/
13,