diff options
author | Karl Berry <karl@freefriends.org> | 2014-05-19 22:17:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-05-19 22:17:16 +0000 |
commit | 085d2102c19ddd99f5c4d3dca9be77d265ec2d0b (patch) | |
tree | 7cb02b8d9aed99d1420f59ff57651616ec57d755 /Master/texmf-dist/source/luatex/luaotfload | |
parent | e3aa6e6bb79b80d9136810a37bbaab9108128ccc (diff) |
luaotfload (19may14)
git-svn-id: svn://tug.org/texlive/trunk@34131 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/luatex/luaotfload')
-rw-r--r-- | Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx index 40b5df93400..3615fa8328b 100644 --- a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx +++ b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx @@ -40,7 +40,7 @@ \input docstrip.tex \Msg{************************************************************************} \Msg{* Installation} -\Msg{* Package: luaotfload v2.4-3 OpenType layout system} +\Msg{* Package: luaotfload v2.4-4 OpenType layout system} \Msg{************************************************************************} \keepsilent @@ -111,7 +111,7 @@ and the derived files %<*driver> \NeedsTeXFormat{LaTeX2e} \ProvidesFile{luaotfload.drv}% - [2014/02/05 v2.4-3 OpenType layout system]% + [2014/05/18 v2.4-4 OpenType layout system]% \documentclass{ltxdoc} \usepackage{metalogo,multicol,mdwlist,fancyvrb,xspace} \usepackage[x11names]{xcolor} @@ -231,7 +231,7 @@ and the derived files % \GetFileInfo{luaotfload.drv} % % \title{The \identifier{luaotfload} package} -% \date{2014/02/05 v2.4-3} +% \date{2014/05/18 v2.4-4} % \author{Elie Roux · Khaled Hosny · Philipp Gesang\\ % Home: \url{https://github.com/lualatex/luaotfload}\\ % Support: \email{lualatex-dev@tug.org}} @@ -1608,8 +1608,8 @@ end luaotfload.module = { name = "luaotfload", - version = 2.40004, --- 2.4-3 - date = "2014/02/05", + version = 2.40005, --- 2.4-4 + date = "2014/05/18", description = "OpenType layout system.", author = "Elie Roux & Hans Hagen", copyright = "Elie Roux", @@ -1995,7 +1995,7 @@ local file_resolver = function (specification) local name = resolve_file (specification.name) local suffix = filesuffix(name) if formats[suffix] then - specification.forced = suffix + specification.forced = string.lower (suffix) specification.forcedname = file.removesuffix(name) else specification.name = name @@ -2080,7 +2080,7 @@ request_resolvers.path = function (specification) else local suffix = filesuffix (name) if formats[suffix] then - specification.forced = suffix + specification.forced = string.lower (suffix) specification.name = file.removesuffix(name) specification.forcedname = name else @@ -2102,7 +2102,7 @@ request_resolvers.kpse = function (specification) if suffix and formats[suffix] then name = file.removesuffix(name) if resolvers.findfile(name, suffix) then - specification.forced = suffix + specification.forced = string.lower (suffix) specification.forcedname = name return end @@ -2130,7 +2130,7 @@ request_resolvers.name = function (specification) if resolved then specification.resolved = resolved specification.sub = subfont - specification.forced = filesuffix (resolved) + specification.forced = string.lower (filesuffix (resolved) or "") specification.forcedname = resolved specification.name = fileremovesuffix (resolved) else @@ -2233,7 +2233,7 @@ luaotfload.aux.start_rewrite_fontname () --- to be migrated to fontspec \else \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{luaotfload}% - [2014/02/05 v2.4-3 OpenType layout system] + [2014/05/18 v2.4-4 OpenType layout system] \RequirePackage{luatexbase} \fi \ifnum\luatexversion<76 |