Overview
Comment: | disable backtraces |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2af5c4085a76ea9f41e2712d4450ca22 |
User & Date: | lexi on 2021-12-22 10:19:58 |
Other Links: | manifest | tags |
Context
2021-12-22
| ||
10:20 | aaaagh remove debugging code check-in: 5898f6833b user: lexi tags: trunk | |
10:19 | disable backtraces check-in: 2af5c4085a user: lexi tags: trunk | |
10:19 | add extension mechanism, move toc to extensions, update docs, fix bugs check-in: 330e1ecfdb user: lexi tags: trunk | |
Changes
Modified cli.lua from [497f5957f5] to [a9857f9cb6].
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