[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: From 5.2 to 5.3: luai_write functions
- From: Dirk Laurie <dirk.laurie@...>
- Date: Tue, 16 Oct 2018 22:42:14 +0200
In Lua 5.2.4, there are functions (implemented as macros) in luaconf.h:
luai_writestring
luai_writestring(s,l)
luai_writeline()
luai_writestringerror
luai_writestringerror
They are not in Lua 5.3.5. Instead, there are functions with similar
names but starting lua_ instead of luai_.
Can one use the ones without the "i" as a drop-in replacement whan
converting from Lua 5.2 to 5.3?