diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-04-23 20:43:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-04-23 20:43:41 +0200 |
commit | eccb7fc3158877d93194e6b7c0f7e542b4544137 (patch) | |
tree | c4fbd5ab6d78bd46b25d796a2b9451c1e0b63f31 /src/version.c | |
parent | 163d0da508d1a206e6a6ee7e2a34fa0a583ae16c (diff) | |
download | vim-git-eccb7fc3158877d93194e6b7c0f7e542b4544137.tar.gz |
updated for version 7.4.264v7.4.264
Problem: Can't define a function starting with "g:". Can't assign a
funcref to a buffer-local variable.
Solution: Skip "g:" at the start of a function name. Don't check for colons
when assigning to a variable.
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 0ab6fa608..fc95a5ad0 100644 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 264, +/**/ 263, /**/ 262, |