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 185 end 186 186 end 187 187 188 188 end 189 189 i = i + 1 end end 190 190 191 191 if args[1] and args[1] ~= '' then 192 - local file = io.open(arg[1], "rb") 192 + local file = io.open(args[1], "rb") 193 193 if not file then error('unable to load file ' .. args[1]) end 194 194 input.stream = file 195 195 input.src.file = args[1] 196 196 end 197 197 198 198 return main(input, outp, log, mode, suggestions, vars) 199 199 end