diff options
author | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-05-04 05:13:42 -0700 |
---|---|---|
committer | Elie Roux <elie.roux@telecom-bretagne.eu> | 2013-05-04 05:13:42 -0700 |
commit | 7c1916deae8420ae3120baaa17524c56f7dfdbb0 (patch) | |
tree | 67b270f03bdf564fc362f6d3503dde3043cfd640 /luaotfload-auxiliary.lua | |
parent | 213b9e54f678b56ec3b095a21dc527bc2293b9cc (diff) | |
parent | f70c8419d5abcc29f99ad50b8d9b20278310ff36 (diff) | |
download | luaotfload-7c1916deae8420ae3120baaa17524c56f7dfdbb0.tar.gz |
Merge pull request #42 from phi-gamma/master
fixes & updates
Diffstat (limited to 'luaotfload-auxiliary.lua')
-rw-r--r-- | luaotfload-auxiliary.lua | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/luaotfload-auxiliary.lua b/luaotfload-auxiliary.lua index bf567e3..5de964d 100644 --- a/luaotfload-auxiliary.lua +++ b/luaotfload-auxiliary.lua @@ -4,7 +4,7 @@ -- DESCRIPTION: part of luaotfload -- REQUIREMENTS: luaotfload 2.2 -- AUTHOR: Khaled Hosny, Élie Roux, Philipp Gesang --- VERSION: 1.0 +-- VERSION: 2.2 -- CREATED: 2013-05-01 14:40:50+0200 ----------------------------------------------------------------------- -- @@ -354,16 +354,6 @@ end aux.provides_language = provides_language ---- fontspec apparently has the arguments shuffled ---- theirs: id -> lang -> script -> bool ---- ours: id -> script -> lang -> bool ---- whereas in the other check_* functions, script is ---- always the second argument ... -aux.provides_language_fontspec = function - (font_id, asked_language, asked_script) - return provides_language(font_id, asked_script, asked_language) -end - --[[doc-- We strip the syntax elements from feature definitions (shouldn’t actually be there in the first place, but who cares ...) |