diff options
author | Hans Hagen <pragma@wxs.nl> | 2012-05-14 16:00:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2012-05-14 16:00:00 +0200 |
commit | feb79ebf08de695a49daa0e7bfe0b991b81fd3e2 (patch) | |
tree | 80f3d4ac39d395659595d89b26192ab7f5daf581 /tex/context/base/l-io.lua | |
parent | 70f57c08e38c62a099bf3e219da08e537ad72ced (diff) | |
download | context-feb79ebf08de695a49daa0e7bfe0b991b81fd3e2.tar.gz |
beta 2012.05.14 16:00
Diffstat (limited to 'tex/context/base/l-io.lua')
-rw-r--r-- | tex/context/base/l-io.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tex/context/base/l-io.lua b/tex/context/base/l-io.lua index a740996c6..4f27dc1dc 100644 --- a/tex/context/base/l-io.lua +++ b/tex/context/base/l-io.lua @@ -252,3 +252,8 @@ function io.readstring(f,n,m) local str = gsub(f:read(n),"%z","") return str end + +-- + +if not io.i_limiter then function io.i_limiter() end end -- dummy so we can test safely +if not io.o_limiter then function io.o_limiter() end end -- dummy so we can test safely |