Lua.hpp: Fix an extra space being added
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
85a3582612
commit
c37f91caf3
|
@ -41,7 +41,7 @@ struct LuaTarget: Target {
|
||||||
make_task(Condition::Statement::Branch,
|
make_task(Condition::Statement::Branch,
|
||||||
if (parseComponent.is_conditional()) {
|
if (parseComponent.is_conditional()) {
|
||||||
output << "elseif ("; transpileTree(parseComponent.condition); output << ") then";
|
output << "elseif ("; transpileTree(parseComponent.condition); output << ") then";
|
||||||
} else output << "else ";
|
} else output << "else";
|
||||||
output << separator;
|
output << separator;
|
||||||
if (newLines) output << indentation;
|
if (newLines) output << indentation;
|
||||||
separate_transpileTree(parseComponent, 1);
|
separate_transpileTree(parseComponent, 1);
|
||||||
|
|
Loading…
Reference in New Issue