comparison src/testdir/test_lua.vim @ 32807:0582b3b40319 v9.0.1719

patch 9.0.1719: if_lua: crash for for Lua functions invoked via Vim callbacks Commit: https://github.com/vim/vim/commit/8a35033782de4e1f43fba15543fc8fb458944194 Author: Jesse Pavel <jpavel@alum.mit.edu> Date: Sun Aug 13 22:05:45 2023 -0400 patch 9.0.1719: if_lua: crash for for Lua functions invoked via Vim callbacks Problem: if_lua: crash for Lua functions invoked via Vim callbacks Solution: Use Lua registry rather than upvalues for udata cache closes: #12785 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Jesse Pavel <jpavel@alum.mit.edu>
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Aug 2023 23:30:03 +0200
parents 94f4a488412e
children 441ceb1c45c1
comparison
equal deleted inserted replaced
32806:7328cddca686 32807:0582b3b40319
1230 call WaitForAssert({-> assert_match(' All$', term_getline(buf, 10))}) 1230 call WaitForAssert({-> assert_match(' All$', term_getline(buf, 10))})
1231 1231
1232 call StopVimInTerminal(buf) 1232 call StopVimInTerminal(buf)
1233 endfunc 1233 endfunc
1234 1234
1235 " Test for a crash when a Lua funcref is invoked with parameters from Vim
1236 func Test_lua_funcref_with_params()
1237 let Lua_funcref = luaeval('function(d) local s = "in Lua callback" end')
1238 call Lua_funcref({'a' : 'b'})
1239 call assert_true(v:true)
1240 endfunc
1241
1235 " vim: shiftwidth=2 sts=2 expandtab 1242 " vim: shiftwidth=2 sts=2 expandtab