diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-03-19 21:59:19 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-03-19 21:59:19 +0100 |
commit | 4eefe47ea4b6bf958617e924f52bc7a409cfb0ed (patch) | |
tree | 15470a0a1c9387e5b7e30ecce841cd75fa63d42d /src/version.c | |
parent | 8376c3d3216f65b93fb3bc03dbbe0c1bdf4faeff (diff) | |
download | vim-git-8.1.1019.tar.gz |
patch 8.1.1019: Lua: may garbage collect function reference in usev8.1.1019
Problem: Lua: may garbage collect function reference in use.
Solution: Keep the function name instead of the typeval. Make luaV_setref()
handle funcref objects. (Ozaki Kiichi, closes #4127)
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 18daa0696..a32770e2b 100644 --- a/src/version.c +++ b/src/version.c @@ -780,6 +780,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1019, +/**/ 1018, /**/ 1017, |