diff options
author | Karl Berry <karl@freefriends.org> | 2010-07-12 23:52:22 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-07-12 23:52:22 +0000 |
commit | 696c569fe209253982cc2918ad81fc6a3cb98152 (patch) | |
tree | d47fcd42a23f207be0e9503204d6e8321d567be3 /Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua | |
parent | cf4826af73e7a736518ada18af58ebf98a2c546b (diff) |
luaotfload 1.16 (12jul10)
git-svn-id: svn://tug.org/texlive/trunk@19406 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua b/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua index 8d81e02f98f..8237851c907 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/otfl-font-xtx.lua @@ -181,7 +181,7 @@ local fontname = (lpeg.P("name:")/isname * (namespec/thename)) + lpeg.P(true)/ local sometext = (lpeg.R("az","AZ","09") + lpeg.S("+-."))^1 local truevalue = lpeg.P("+") * spaces * (sometext/istrue) local falsevalue = lpeg.P("-") * spaces * (sometext/isfalse) -local keyvalue = (lpeg.C(sometext) * spaces * lpeg.P("=") * spaces * lpeg.C(sometext))/iskey +local keyvalue = lpeg.P("+") + (lpeg.C(sometext) * spaces * lpeg.P("=") * spaces * lpeg.C(sometext))/iskey local somevalue = sometext/istrue local subvalue = lpeg.P("(") * (lpeg.C(lpeg.P(1-lpeg.S("()"))^1)/issub) * lpeg.P(")") -- for Kim local option = spaces * (keyvalue + falsevalue + truevalue + somevalue) * spaces |