diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-04-05 23:43:40 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-04-05 23:43:46 +0200 |
commit | 15753d8bc80596a89ae0dd57e0d6132bf0731035 (patch) | |
tree | 0a8c898406651698145f2518be76e2176183ecb1 | |
parent | e0e6e22eb1ccc4e8867cb116d7e0b378b64f872c (diff) | |
download | luaotfload-15753d8bc80596a89ae0dd57e0d6132bf0731035.tar.gz |
[tool] status library API fallout
With revision 5624, the status library was overhauled. Among others we
lose the ``luatex_svn`` field which was rather useful for debugging :/
-rwxr-xr-x | src/luaotfload-tool.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/luaotfload-tool.lua b/src/luaotfload-tool.lua index 69b6c97..f1f3ee2 100755 --- a/src/luaotfload-tool.lua +++ b/src/luaotfload-tool.lua @@ -310,14 +310,15 @@ local version_msg = function ( ) local out = function (...) texiowrite_nl (stringformat (...)) end local uname = os.uname () local meta = fonts.names.getmetadata () + local info = status.list () out (about, luaotfload.self) out ("%s version: %q", luaotfload.self, version) out ("Revision: %q", config.luaotfload.status.notes.revision) out ("Lua interpreter: %s; version %q", runtime[1], runtime[2]) - out ("Luatex SVN revision: %d", status.luatex_svn) +--[[out ("Luatex SVN revision: %d", info.luatex_svn)]] --> SVN r5624 out ("Luatex version: %.2f.%d", - status.luatex_version / 100, - status.luatex_revision) + info.luatex_version / 100, + info.luatex_revision) out ("Platform: type=%s name=%s", os.type, os.name) local uname_vars = tablesortedkeys (uname) |