diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-03-07 14:50:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-03-07 14:50:34 +0100 |
commit | 4e3c70d241842d3129d4c4d480c60910029d56af (patch) | |
tree | 6088792bbf20b557241672fb5dfa8bb91250ee74 | |
parent | 84e80b51d12f11a95aa76be51abed6a9d0a8c6c5 (diff) | |
download | vim-git-4e3c70d241842d3129d4c4d480c60910029d56af.tar.gz |
updated for version 7.3.847v7.3.847
Problem: Test 55 fails when messages are translated.
Solution: Set language to C. (Ken Takata)
-rw-r--r-- | src/testdir/test55.in | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test55.in b/src/testdir/test55.in index f255e33e4..991c4605c 100644 --- a/src/testdir/test55.in +++ b/src/testdir/test55.in @@ -3,6 +3,7 @@ Tests for List and Dictionary types. vim: set ft=vim : STARTTEST :so small.vim :fun Test(...) +:lang C :" Creating List directly with different types :let l = [1, 'as''d', [1, 2, function("strlen")], {'a': 1},] :$put =string(l) diff --git a/src/version.c b/src/version.c index 7db091245..309f656c6 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 847, +/**/ 846, /**/ 845, |