Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Commit

Permalink
[tool] status library API fallout
Browse files Browse the repository at this point in the history
With revision 5624, the status library was overhauled. Among others we
lose the ``luatex_svn`` field which was rather useful for debugging :/
  • Loading branch information
phi-gamma committed Apr 5, 2016
1 parent e0e6e22 commit 15753d8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/luaotfload-tool.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 15753d8

Please sign in to comment.