mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Update Lua instances (2/4)
This is effectively a NO-OP.
This commit is contained in:
parent
7c10a54334
commit
6b3f25eb2a
4 changed files with 8 additions and 15 deletions
|
|
@ -416,7 +416,7 @@ setup_lua ()
|
|||
{
|
||||
assert (!lua);
|
||||
|
||||
lua = new LuaState ();
|
||||
lua = new LuaState (false, false);
|
||||
lua->Print.connect (&my_lua_print);
|
||||
lua_State* L = lua->getState ();
|
||||
|
||||
|
|
@ -491,7 +491,7 @@ interactive_interpreter ()
|
|||
}
|
||||
|
||||
do {
|
||||
LuaState lt;
|
||||
LuaState lt (false, false);
|
||||
lua_State* L = lt.getState ();
|
||||
int status = luaL_loadbuffer (L, line, strlen (line), "=stdin");
|
||||
if (!incomplete (L, status)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue