216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
input.stream = file
input.src.file = args[1]
end
return main(input, outp, log, mode, suggestions, vars, extrule)
end
local ok, e = pcall(entry_cli)
-- local ok, e = true, entry_cli()
if not ok then
local str = 'translation failure'
if ss.exn.is(e) then
str = e.kind.desc
end
local color = false
if log:seek() == nil then
|
|
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
input.stream = file
input.src.file = args[1]
end
return main(input, outp, log, mode, suggestions, vars, extrule)
end
-- local ok, e = pcall(entry_cli)
local ok, e = true, entry_cli()
if not ok then
local str = 'translation failure'
if ss.exn.is(e) then
str = e.kind.desc
end
local color = false
if log:seek() == nil then
|