diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-04-26 10:24:06 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-28 08:00:28 -0300 |
commit | 9b9c1dee1352165fea2f9108456484b30b796fd6 (patch) | |
tree | 0ba21d04483152bd212f656c5d5137e0a2f99aa8 /src/version.c | |
parent | 4d0dd14189c0f0dd4ad561d65d97aa3e1589102b (diff) | |
download | rneovim-9b9c1dee1352165fea2f9108456484b30b796fd6.tar.gz rneovim-9b9c1dee1352165fea2f9108456484b30b796fd6.tar.bz2 rneovim-9b9c1dee1352165fea2f9108456484b30b796fd6.zip |
vim-patch:7.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.
https://code.google.com/p/vim/source/detail?r=00acac0af680c2d8c82db5258474b121a5908926
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c index 57fea5d514..c1d82a2952 100644 --- a/src/version.c +++ b/src/version.c @@ -203,7 +203,7 @@ static char *(features[]) = { static int included_patches[] = { // Add new patch number below this line //265, - //264, + 264, //263, //262, 261, |