fixup HEAD^
use tab characters between lua print arguments, and no trailing tab
This commit is contained in:
parent
c095029d68
commit
bce5fb22e5
1 changed files with 4 additions and 1 deletions
|
@ -94,7 +94,10 @@ int lua_kernel_base::intf_print(lua_State* L)
|
|||
if (!str) {
|
||||
str = "";
|
||||
}
|
||||
cmd_log_ << str << " ";
|
||||
if (i > 1) {
|
||||
cmd_log_ << "\t"; //separate multiple args with tab character
|
||||
}
|
||||
cmd_log_ << str;
|
||||
DBG_LUA << "'" << str << "'\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue