diff options
-rw-r--r-- | luaotfload-blacklist.cnf | 2 | ||||
-rw-r--r-- | luaotfload-features.lua | 2 | ||||
-rwxr-xr-x | luaotfload-tool.lua | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/luaotfload-blacklist.cnf b/luaotfload-blacklist.cnf index 943d347..2a21091 100644 --- a/luaotfload-blacklist.cnf +++ b/luaotfload-blacklist.cnf @@ -2,4 +2,6 @@ LastResort.ttf % a MacOSX font, but also available for free from unicode.org % Segfaults under LuaTeX 0.76 lingoes.ttf +% http://tug.org/pipermail/luatex/2013-May/004239.html +Diablindall.ttf diff --git a/luaotfload-features.lua b/luaotfload-features.lua index 39d4a88..f541964 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -1050,7 +1050,7 @@ local extract_subfont do local eof = P(-1) local digit = R"09" - --- Theoretically a valid subfont address can be up to seven + --- Theoretically a valid subfont address can be up to ten --- digits long. local sub_expr = P"(" * C(digit^1) * P")" * eof local full_path = C(P(1 - sub_expr)^1) diff --git a/luaotfload-tool.lua b/luaotfload-tool.lua index 352697c..721e3cf 100755 --- a/luaotfload-tool.lua +++ b/luaotfload-tool.lua @@ -347,7 +347,7 @@ actions.query = function (job) lookup = "name", specification = "name:" .. query, optsize = 0, - } + } local foundname, subfont, success = fonts.names.resolve(nil, nil, tmpspec) |