diff options
author | Karl Berry <karl@freefriends.org> | 2014-08-14 22:04:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-08-14 22:04:57 +0000 |
commit | ff56c81059c09f8c60cdc6c1505611996ff867c3 (patch) | |
tree | f5f6c1946f2f1a46649e7ba4d278f061d44a8312 /Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua | |
parent | 6390fb977ecb8974cd83582aee6ef5cfd273b8ab (diff) |
luaotfload
git-svn-id: svn://tug.org/texlive/trunk@34936 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua index 660524e6fd7..12b68a57d9f 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua @@ -8310,7 +8310,7 @@ actions["reorganize glyph anchors"]=function(data,filename,raw) for tag,specification in next,data do for i=1,#specification do local si=specification[i] - specification[i]={ si.x or 0,si.y or 0 } + specification[i]={ si and si.x or 0,si and si.y or 0 } end end else |