summaryrefslogtreecommitdiff
path: root/src/luaotfload-database.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-03-23 17:57:42 +0100
committerPhilipp Gesang <phg42.2a@gmail.com>2014-03-23 17:57:42 +0100
commit2d7567b653cabaa0d259996a47227cefa9b54563 (patch)
tree165a5d560820f45381f65e9c5f9445fcf5feb634 /src/luaotfload-database.lua
parentc160c40265b5eb5670730906614997ad2545f94d (diff)
downloadluaotfload-2d7567b653cabaa0d259996a47227cefa9b54563.tar.gz
[db,tool] implement termination of bisect session
Diffstat (limited to 'src/luaotfload-database.lua')
-rw-r--r--src/luaotfload-database.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/luaotfload-database.lua b/src/luaotfload-database.lua
index de1594a..a369d8e 100644
--- a/src/luaotfload-database.lua
+++ b/src/luaotfload-database.lua
@@ -2945,6 +2945,22 @@ local collect_font_filenames = function ()
return filenames
end
+--[[doc--
+
+ nth_font_file -- Return the filename of the nth font.
+
+--doc]]--
+
+--- int -> string
+local nth_font_filename = function (n)
+ report ("info", 4, "db", "Picking the %d font file.", n)
+ if not p_blacklist then
+ read_blacklist ()
+ end
+ local filenames = collect_font_filenames ()
+ return filenames[n] and filenames[n][1] or "<error>"
+end
+
--[[doc
count_font_files -- Return the number of files found by
@@ -3490,6 +3506,7 @@ names.sanitize_fontname = sanitize_fontname
names.getfilename = resolve_fullpath
names.set_location_precedence = set_location_precedence
names.count_font_files = count_font_files
+names.nth_font_filename = nth_font_filename
--- font cache
names.purge_cache = purge_cache