summaryrefslogtreecommitdiff
path: root/tex/context/base/l-io.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2013-08-05 10:01:00 +0200
committerHans Hagen <pragma@wxs.nl>2013-08-05 10:01:00 +0200
commit822140c4a47ed07ad840286ff5c0558dffb5d16b (patch)
tree60cff406282d69feaca3024d75848bb19e2b70ba /tex/context/base/l-io.lua
parent626e4a8491bd5cae06a525ffd70b963d75bcc6d3 (diff)
downloadcontext-822140c4a47ed07ad840286ff5c0558dffb5d16b.tar.gz
beta 2013.08.05 10:01
Diffstat (limited to 'tex/context/base/l-io.lua')
-rw-r--r--tex/context/base/l-io.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tex/context/base/l-io.lua b/tex/context/base/l-io.lua
index e3a443be8..52f166af9 100644
--- a/tex/context/base/l-io.lua
+++ b/tex/context/base/l-io.lua
@@ -60,7 +60,7 @@ io.readall = readall
function io.loaddata(filename,textmode) -- return nil if empty
local f = io.open(filename,(textmode and 'r') or 'rb')
if f then
--- local data = f:read('*all')
+ -- local data = f:read('*all')
local data = readall(f)
f:close()
if #data > 0 then