Differences From
Artifact [497f5957f5]:
200 200 input.stream = file
201 201 input.src.file = args[1]
202 202 end
203 203
204 204 return main(input, outp, log, mode, suggestions, vars)
205 205 end
206 206
207 --- local ok, e = pcall(entry_cli)
208 -local ok, e = true, entry_cli()
207 +local ok, e = pcall(entry_cli)
208 +-- local ok, e = true, entry_cli()
209 209 if not ok then
210 210 local str = 'translation failure'
211 211 if ss.exn.is(e) then
212 212 str = e.kind.desc
213 213 end
214 214 local color = false
215 215 if log:seek() == nil then