# HG changeset patch # User jbe # Date 1350667309 -7200 # Node ID 290b6b10b1608969f19760f407298961be65ed43 # Parent da6f69ba217c35ccef25fce5d7819df057fea7ee Bugfix: Removed wrong "r" parameter from io.lines(...) call diff -r da6f69ba217c -r 290b6b10b160 framework/bin/autodoc.lua --- a/framework/bin/autodoc.lua Mon Oct 15 20:30:42 2012 +0200 +++ b/framework/bin/autodoc.lua Fri Oct 19 19:21:49 2012 +0200 @@ -92,7 +92,7 @@ end reset() end - for line in io.lines(filename, "r") do + for line in io.lines(filename) do local function add_to(tbl) if #tbl > 0 or not string.match(line, "^%s*$") then tbl[#tbl+1] = line