Files
neovim/test/functional
skewb1k bc0635a9fc fix(lua): vim.wait(math.huge) fails #36885
Problem:
`nlua_wait()` uses `luaL_checkinteger()` which doesn't support
`math.huge` since it's double type. On PUC Lua this fails with
'number has no integer representation' error and on LuaJIT this
overflows int.

Solution:
Use `luaL_checknumber()` and handle `math.huge`.
2025-12-09 13:59:06 -05:00
..
2025-12-06 20:33:02 -05:00
2025-12-08 01:43:02 -05:00
2025-12-08 01:43:02 -05:00