summaryrefslogtreecommitdiff
path: root/src/luaotfload-database.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2014-03-21 08:07:23 +0100
committerPhilipp Gesang <phg42.2a@gmail.com>2014-03-21 08:07:23 +0100
commit95cdecde2d3415604cd8194eacd11544fe985aeb (patch)
tree7b7beace788147993e07676a84d92b79467e0d6f /src/luaotfload-database.lua
parent3cfff4cfd2a082eb29334dd97e005b953c155d8a (diff)
downloadluaotfload-95cdecde2d3415604cd8194eacd11544fe985aeb.tar.gz
[db] update multi-pass description
Diffstat (limited to 'src/luaotfload-database.lua')
-rw-r--r--src/luaotfload-database.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/luaotfload-database.lua b/src/luaotfload-database.lua
index 9e34668..17cb4fd 100644
--- a/src/luaotfload-database.lua
+++ b/src/luaotfload-database.lua
@@ -3151,8 +3151,8 @@ update_names = function (currentnames, force, dry_run)
--- pass 1: Collect the names of all fonts we are going to process.
local font_filenames = collect_font_filenames ()
- --- pass 1 get raw data: read font files (normal case) or reuse
- --- information present in index
+ --- pass 2: read font files (normal case) or reuse information
+ --- present in index
n_new = retrieve_namedata (font_filenames,
currentnames,
@@ -3163,7 +3163,7 @@ update_names = function (currentnames, force, dry_run)
#font_filenames, n_new)
end
- --- pass 2 (optional): collect some stats about the raw font info
+ --- pass 3 (optional): collect some stats about the raw font info
if luaotfloadconfig.statistics == true then
targetnames.meta.statistics = collect_statistics
(targetnames.mappings)
@@ -3173,17 +3173,17 @@ update_names = function (currentnames, force, dry_run)
--- non-texmf entries are redirected there and the mapping
--- needs to be 100% consistent
- --- pass 3: build filename table
+ --- pass 4: build filename table
targetnames.files = generate_filedata (targetnames.mappings)
- --- pass 4: build family lookup table
+ --- pass 5: build family lookup table
targetnames.families = collect_families (targetnames.mappings)
- --- pass 5: arrange style and size info
+ --- pass 6: arrange style and size info
targetnames.families = group_modifiers (targetnames.mappings,
targetnames.families)
- --- pass 6: order design size tables
+ --- pass 7: order design size tables
targetnames.families = order_design_sizes (targetnames.families)