From 41cc43dd954d1aa33fd607fa7b94ee8f3857e255 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Mon, 30 Dec 2013 21:51:54 +0100 Subject: [doc] add note about Makefile to README --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index 8a1af43..903551f 100644 --- a/README +++ b/README @@ -57,6 +57,9 @@ Here are the recommended installation methods (preferred first). Prerequisites ------------------------------------------------------------------------------- +You need GNU make to use the Makefile. The executable may be called "gmake" on +your system. + Typesetting the documentation requires LuaTeX and GraphViz. The Docutils are needed to generate the manpage. -- cgit v1.2.3 From a679d233954dc989621bb6754d838dc537fd3d02 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 31 Dec 2013 17:04:24 +0100 Subject: update news --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3665153..b8f380d 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ Change History -------------- -2013/XX/XX, luaotfload v2.4 +2013/12/31, luaotfload v2.4 * Additional self-tests, now in separate file (luaotfload-diagnostics.lua) * Better path and directory handling, especially on Windows * database now indexes Type1 fonts (PFA, PFB) and makes them accessible -- cgit v1.2.3 From 9fd4c4523b1e69b5c49de7fda01da5540e60fcda Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Thu, 2 Jan 2014 17:19:53 +0100 Subject: [main] fix path resolver Close #162 --- luaotfload.dtx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/luaotfload.dtx b/luaotfload.dtx index adbdf26..08f56af 100644 --- a/luaotfload.dtx +++ b/luaotfload.dtx @@ -2078,13 +2078,14 @@ request_resolvers.path = function (specification) name) file_resolver (specification) else - local suffix = filesuffix (name) - if formats[suffix] then - specification.forced = suffix - specification.name = file.removesuffix(name) - else - specification.name = name - end + local suffix = filesuffix (name) + if formats[suffix] then + specification.forced = suffix + specification.name = file.removesuffix(name) + specification.forcedname = name + else + specification.name = name + end end end -- cgit v1.2.3