Differences From Artifact [9f14981767]:
- File cli.lua — part of check-in [83a68319da] at 2021-12-27 05:52:01 on branch trunk — defuckered the cli driver so syntax errors will display instead of triggering a panic in the binary wrapper (user: lexi, size: 6507) [annotate] [blame] [check-ins using]
To Artifact [ad6ab18d31]:
- File cli.lua — part of check-in [52b9bce7dd] at 2021-12-26 04:08:02 on branch trunk — all kindsa shit (user: lexi, size: 6507) [annotate] [blame] [check-ins using] [more...]
218 218 end 219 219 220 220 return main(input, outp, log, mode, suggestions, vars, extrule) 221 221 end 222 222 223 -local ok, e = pcall(entry_cli) 224 --- local ok, e = true, entry_cli() 223 +-- local ok, e = pcall(entry_cli) 224 +local ok, e = true, entry_cli() 225 225 if not ok then 226 226 local str = 'translation failure' 227 227 if ss.exn.is(e) then 228 228 str = e.kind.desc 229 229 end