Differences From
Artifact [6be667433b]:
539 539 var fr = lib.file.open(befile, [lib.file.mode.read])
540 540 if fr.ok == false then
541 541 lib.bail('could not open configuration file ', befile)
542 542 end
543 543
544 544 var f = fr.val
545 545 var c: lib.mem.vec(lib.store.source) c:init(8)
546 - var text: lib.str.acc text:init(64)
546 + var text: lib.str.acc text:init(256)
547 547 do var buf: int8[64]
548 548 while true do
549 549 var ct = f:read(buf, [buf.type.N])
550 550 if ct == 0 then break end
551 551 text:push(buf, ct)
552 552 end
553 553 end