diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-17 19:53:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-17 19:53:49 +0100 |
commit | baff0fec3f3c250bde59796d94a3fd10979e3b66 (patch) | |
tree | 39b1f98f0334a528bc464f2dfb46839b00772d1b /src/version.c | |
parent | b91e59b0f3b68913dba2042a55b8a50c8ddf50fb (diff) | |
download | vim-baff0fec3f3c250bde59796d94a3fd10979e3b66.zip |
updated for version 7.2.402
Problem: This gives a #705 error: let X = function('haslocaldir')
let X = function('getcwd')
Solution: Don't give E705 when the name is found in the hashtab. (Sergey
Khorev)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 64e2a6067..c625dffa9 100644 --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 402, +/**/ 401, /**/ 400, |