diff options
author | Elie Roux <elie.roux@telecom-bretagne.eu> | 2009-04-15 17:56:45 +0200 |
---|---|---|
committer | Elie Roux <elie.roux@telecom-bretagne.eu> | 2009-04-15 17:56:45 +0200 |
commit | 74fe1c58a90d884f227a7354181633c0452ac0f9 (patch) | |
tree | 07d84d3ecfac114a3f9d1f3edc47e6f3391299ea /luaotfload.lua | |
parent | e86146694fb4159c4ae2ad9969c6c992a19e9c09 (diff) | |
download | luaotfload-74fe1c58a90d884f227a7354181633c0452ac0f9.tar.gz |
fixing access to en empty table in some particular (LaTeX-only) cases
Diffstat (limited to 'luaotfload.lua')
-rw-r--r-- | luaotfload.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/luaotfload.lua b/luaotfload.lua index 80e1ae2..21aff95 100644 --- a/luaotfload.lua +++ b/luaotfload.lua @@ -127,6 +127,9 @@ end luaotfload.loadmodule('font-xtx.lua') luaotfload.loadmodule('font-dum.lua') +-- small patch +fonts.enc.known = {} + function luaotfload.register_callbacks() callback.add('ligaturing', nodes.simple_font_dummy, 'luaotfload.ligaturing') callback.add('kerning', nodes.simple_font_dummy, 'luaotfload.kerning') |