summaryrefslogtreecommitdiff
path: root/luaotfload-database.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-08-03 22:44:30 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-08-03 22:44:30 +0200
commit358258ab83d2bc0d9d8ad141427c7df989425c90 (patch)
tree1338cfe733365adbcd77c2f0db555b4f3980cc3b /luaotfload-database.lua
parent24ef88fda9d592e880c4694b50c64c5ae0b74a92 (diff)
downloadluaotfload-358258ab83d2bc0d9d8ad141427c7df989425c90.tar.gz
[tool] handle anon: and file: requests with --find
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r--luaotfload-database.lua16
1 files changed, 9 insertions, 7 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua
index 939b6bb..8da0713 100644
--- a/luaotfload-database.lua
+++ b/luaotfload-database.lua
@@ -523,21 +523,21 @@ crude_file_lookup_verbose = function (filename)
--- look up in db first ...
found = verbose_lookup(filenames, "bare", filename)
if found then
- return found
+ return found, nil, true
end
found = verbose_lookup(filenames, "base", filename)
if found then
- return found
+ return found, nil, true
end
--- ofm and tfm, returns pair
for i=1, #type1_formats do
local format = type1_formats[i]
if resolvers.findfile(filename, format) then
- return file.addsuffix(filename, format), format
+ return file.addsuffix(filename, format), format, true
end
end
- return filename, nil
+ return filename, nil, false
end
--- string -> (string | string * string)
@@ -557,15 +557,17 @@ crude_file_lookup = function (filename)
if found == nil then
found = dummy_findfile(filename)
end
- return found or filename
+ return found or filename, nil, true
end
+
for i=1, #type1_formats do
local format = type1_formats[i]
if resolvers.findfile(filename, format) then
- return file.addsuffix(filename, format), format
+ return file.addsuffix(filename, format), format, true
end
end
- return filename, nil
+
+ return filename, nil, false
end
--[[doc--