diff options
author | eroux <elie.roux@telecom-bretagne.eu> | 2010-03-01 11:48:31 +0100 |
---|---|---|
committer | eroux <elie.roux@telecom-bretagne.eu> | 2010-03-01 11:48:31 +0100 |
commit | 8e504aea583057b70c34e71cd24af1f8cc648fa1 (patch) | |
tree | 57e6e4e5416b8188cae3245b3111d90bd4f1a38c /otfl-font-nms.lua | |
parent | bb568ecaa472c40c9276068c99dbcbb10d84c281 (diff) | |
download | luaotfload-8e504aea583057b70c34e71cd24af1f8cc648fa1.tar.gz |
Now having version in status table too
Also stronger checks on status
Diffstat (limited to 'otfl-font-nms.lua')
-rw-r--r-- | otfl-font-nms.lua | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/otfl-font-nms.lua b/otfl-font-nms.lua index e9b0d4e..15466a1 100644 --- a/otfl-font-nms.lua +++ b/otfl-font-nms.lua @@ -312,6 +312,12 @@ local function fontnames_init() } end +local function status_init() + return { + version = names.version, + } +end + -- The main function, scans everything -- - fontnames is the final table to return -- - force is whether we rebuild it from scratch or not @@ -319,10 +325,12 @@ end local function update(fontnames, force, status) if force then fontnames = fontnames_init() + status = status_init() else - if fontnames and fontnames.version and fontnames.version == names.version then - else + if not fontnames or not fontnames.version or fontnames.version ~= names.version + or not status or not status.version or status.version ~= names.version then fontnames = fontnames_init() + status = status_init() if trace_search then logs.report("no font names database or old one found, generating new one") end @@ -330,7 +338,7 @@ local function update(fontnames, force, status) end fontnames = scan_texmf_tree(fontnames, status) fontnames = scan_os_fonts (fontnames, status) - return fontnames + return fontnames, status end names.scan = scan_dir |