diff options
| author | Philipp Gesang <phg42.2a@gmail.com> | 2014-02-09 21:28:51 +0100 | 
|---|---|---|
| committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-02-09 21:28:51 +0100 | 
| commit | cfb1b0117659535e74477fe800891768de78058b (patch) | |
| tree | 712d6b75e6065c66d19a5b82a0b3b5bf23d19184 | |
| parent | 2c6feb979da6435bb9f6636a46be576f688f7f78 (diff) | |
| download | luaotfload-cfb1b0117659535e74477fe800891768de78058b.tar.gz | |
[parsers,features] fix missing localized math.ceil()
| -rw-r--r-- | luaotfload-parsers.lua | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/luaotfload-parsers.lua b/luaotfload-parsers.lua index 5145ca0..1048e1d 100644 --- a/luaotfload-parsers.lua +++ b/luaotfload-parsers.lua @@ -46,6 +46,8 @@ local stringsub         = string.sub  local stringfind        = string.find  local stringlower       = string.lower +local mathceil          = math.ceil +  local lfs               = lfs  local lfsisfile         = lfs.isfile  local lfsisdir          = lfs.isdir  | 
