diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2009-12-30 11:17:04 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2009-12-30 13:20:31 +0200 |
commit | 1005e9ef11f07210130b96c03811b0762b13e33c (patch) | |
tree | c5cbe010bf9e24dcb19e5a3179ff311a149cdfeb /otfl-font-xtx.lua | |
parent | d4cccf105bb508150dc765c93bb47bf6f9a87f81 (diff) | |
download | luaotfload-1005e9ef11f07210130b96c03811b0762b13e33c.tar.gz |
Updating to latest ConTeXt beta (2009.12.29)
Diffstat (limited to 'otfl-font-xtx.lua')
-rw-r--r-- | otfl-font-xtx.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/otfl-font-xtx.lua b/otfl-font-xtx.lua index 8aecae8..574221b 100644 --- a/otfl-font-xtx.lua +++ b/otfl-font-xtx.lua @@ -9,6 +9,7 @@ if not modules then modules = { } end modules ['font-xtx'] = { local texsprint, count = tex.sprint, tex.count local format, concat, gmatch, match, find, lower = string.format, table.concat, string.gmatch, string.match, string.find, string.lower local tostring, next = tostring, next +local lpegmatch = lpeg.match local trace_defining = false trackers.register("fonts.defining", function(v) trace_defining = v end) @@ -88,7 +89,7 @@ local pattern = (filename + fontname) * subvalue^0 * crapspec^0 * options^0 function fonts.define.specify.colonized(specification) -- xetex mode list = { } - pattern:match(specification.specification) + lpegmatch(pattern,specification.specification) for k, v in next, list do list[k] = v:is_boolean() if type(list[a]) == "nil" then |