Files
neovim/test/functional/lua
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
..
2024-04-23 18:17:04 +02:00
2025-01-09 09:26:45 -08:00
2025-09-03 23:03:51 -04:00
2025-11-22 17:04:32 -05:00
2024-04-23 18:17:04 +02:00