Overview
Comment: | fix embarassing typobug |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d5e8521d305cce3cebfbd2eb8a10fac4 |
User & Date: | lexi on 2021-12-21 03:26:36 |
Other Links: | manifest | tags |
Context
2021-12-21
| ||
05:04 | add --version -V flag check-in: 0c6a784678 user: lexi tags: trunk | |
03:26 | fix embarassing typobug check-in: d5e8521d30 user: lexi tags: trunk | |
03:15 | make names consistent, make view script customizable check-in: 13a73d4eb8 user: lexi tags: trunk | |
Changes
Modified cli.lua from [2240e68512] to [37b0a0a8ee].
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
end end end i = i + 1 end end if args[1] and args[1] ~= '' then local file = io.open(arg[1], "rb") if not file then error('unable to load file ' .. args[1]) end input.stream = file input.src.file = args[1] end return main(input, outp, log, mode, suggestions, vars) end |
| |
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
end
end
end
i = i + 1 end end
if args[1] and args[1] ~= '' then
local file = io.open(args[1], "rb")
if not file then error('unable to load file ' .. args[1]) end
input.stream = file
input.src.file = args[1]
end
return main(input, outp, log, mode, suggestions, vars)
end
|