Adjustments to offset convention (don't want 1s based addresssing to mess with the spec defined encoding)

This commit is contained in:
ed
2026-07-21 20:52:13 -04:00
parent e70361b548
commit f6b4d9895e
4 changed files with 101 additions and 101 deletions
+2 -1
View File
@@ -390,7 +390,8 @@ end
local function build_ctx(args)
local sources = {}
for _, path in ipairs(args.sources) do
-- TODO(Ed): io.open?? why not lfs?
-- lfs handles path metadata and directories, not file-content streams.
-- Keep this io.open local so this entry point preserves its tailored diagnostic and exit path below.
local f = io.open(path, "r")
if not f then
io.stderr:write("ps1_meta: cannot open --source " .. path .. "\n")