summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorOpportunityLiu <[email protected]>2019-06-19 13:57:38 +0800
committerOpportunityLiu <[email protected]>2019-06-19 13:57:38 +0800
commit522a4454a460e46ee98a41c9c4f9df1f92ae0ffe (patch)
tree1144b8b53dcfb8c6b60f28ad5c07ef5cd29db7c3 /core/src
parent0ea0f53bf8b4f52c05337e5966545baf28d8a582 (diff)
use a safe name
Diffstat (limited to 'core/src')
-rw-r--r--core/src/xmake/sandbox/interactive.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/xmake/sandbox/interactive.c b/core/src/xmake/sandbox/interactive.c
index 941e38c31..6fc643520 100644
--- a/core/src/xmake/sandbox/interactive.c
+++ b/core/src/xmake/sandbox/interactive.c
@@ -332,12 +332,12 @@ tb_int_t xm_sandbox_interactive(lua_State* lua)
/* dump results
*
* stack: arg1(sandbox_scope) [results] -> ...
- * after: arg1(sandbox_scope) interactive_dump [results] -> ...
+ * after: arg1(sandbox_scope) $interactive_dump [results] -> ...
*/
- lua_getfield(lua, 1, "interactive_dump"); // load interactive_dump() from sandbox_scope
+ lua_getfield(lua, 1, "$interactive_dump"); // load $interactive_dump() from sandbox_scope
lua_insert(lua, -(count + 1));
if (lua_pcall(lua, count, 0, 0) != 0)
- tb_printl(lua_pushfstring(lua, "error calling " LUA_QL("interactive_dump") " (%s)", lua_tostring(lua, -1)));
+ tb_printl(lua_pushfstring(lua, "error calling " LUA_QL("$interactive_dump") " (%s)", lua_tostring(lua, -1)));
}
}