summaryrefslogtreecommitdiff
path: root/lualibs-lua.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-05-05 07:47:48 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2014-05-05 07:47:48 +0200
commitcc7cbd37b22131aa81a58be88da43ad15ea18436 (patch)
tree056896d2b982ad976e9db1af641913b10c27afce /lualibs-lua.lua
parentd758aba692b362c8653e1e4b1b5c13df4346652b (diff)
parentc1310e04a23cfe5d3d795b7e09d91599a3c916a5 (diff)
downloadlualibs-cc7cbd37b22131aa81a58be88da43ad15ea18436.tar.gz
Merge pull request #24 from phi-gamma/master
update to 2.1b
Diffstat (limited to 'lualibs-lua.lua')
-rw-r--r--lualibs-lua.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/lualibs-lua.lua b/lualibs-lua.lua
index fc05afa..9565f48 100644
--- a/lualibs-lua.lua
+++ b/lualibs-lua.lua
@@ -6,6 +6,17 @@ if not modules then modules = { } end modules ['l-lua'] = {
license = "see context related readme files"
}
+-- potential issues with 5.3:
+
+-- i'm not sure yet if the int/float change is good for luatex
+
+-- math.min
+-- math.max
+-- tostring
+-- tonumber
+-- utf.*
+-- bit32
+
-- compatibility hacksand helpers
local major, minor = string.match(_VERSION,"^[^%d]+(%d+)%.(%d+).*$")
@@ -148,3 +159,9 @@ function optionalrequire(...)
return result
end
end
+
+-- nice for non ascii scripts (this might move):
+
+if lua then
+ lua.mask = load([[τεχ = 1]]) and "utf" or "ascii"
+end