summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/data-zip.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/data-zip.lua')
-rw-r--r--tex/context/base/mkiv/data-zip.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/data-zip.lua b/tex/context/base/mkiv/data-zip.lua
index 8d914b842..1a9310f17 100644
--- a/tex/context/base/mkiv/data-zip.lua
+++ b/tex/context/base/mkiv/data-zip.lua
@@ -70,10 +70,10 @@ if zipfiles then
local readstring = streams.readstring
local streamsize = streams.size
- local metatable = {
+ local metatable = { -- irrelevant as the streams proivide the methods .. a leftover?
close = streams.close,
read = function(stream,n)
- readstring(stream,n == "*a" and streamsize(stream) or n)
+ readstring(stream,n == "*a" and streamsize(stream) or n) -- no return ?
end
}