cortav  Check-in [2af5c4085a]

Overview
Comment:disable backtraces
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2af5c4085a76ea9f41e2712d4450ca225ca5907f93ebe47ee1b3475f04a9c1b5
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
		input.stream = file
		input.src.file = args[1]
	end

	return main(input, outp, log, mode, suggestions, vars)
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







|
|







200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
		input.stream = file
		input.src.file = args[1]
	end

	return main(input, outp, log, mode, suggestions, vars)
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