summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-01-02 08:21:15 -0800
committerPhilipp Gesang <phg42.2a@gmail.com>2014-01-02 08:21:15 -0800
commit85a3a931dfe9426d461f9b3e3e2d9605d34df04a (patch)
tree39f4af5083739e253a699c1b5f1f5cb076dc0547
parent99b0c374da13ece6ddad510a8695257e4b9a07bd (diff)
parent9fd4c4523b1e69b5c49de7fda01da5540e60fcda (diff)
downloadluaotfload-85a3a931dfe9426d461f9b3e3e2d9605d34df04a.tar.gz
Merge pull request #163 from phi-gamma/master
hotfix for v2.4
-rw-r--r--NEWS2
-rw-r--r--README3
-rw-r--r--luaotfload.dtx15
3 files changed, 12 insertions, 8 deletions
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
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.
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