This commit is contained in:
UndeadMaelys 2022-03-22 16:31:15 +01:00
parent 0992895e5c
commit 500d936c0f

View File

@ -36,7 +36,7 @@ symbol_composite = {
} }
-- program start -- program start
function convertToHeonian(text, ...) function convertToHeonian(text)
local step = true -- this is set to false when a conclusion has been reached local step = true -- this is set to false when a conclusion has been reached
local transcribed = false local transcribed = false
local transcribed_text = "" local transcribed_text = ""
@ -44,12 +44,8 @@ function convertToHeonian(text, ...)
-- verbose? -- verbose?
local debug = false local debug = false
for _, v in pairs(arg) do for _, v in pairs(arg) do
if v == "-v" if v == "-v" or v == "--verbose" then debug = true end
or v == "--verbose"
then
debug = true
end
end end
-- we check if it's necessary to check anything at all -- we check if it's necessary to check anything at all