diff options
author | Hans Hagen <pragma@wxs.nl> | 2014-02-13 11:27:00 +0100 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2014-02-13 11:27:00 +0100 |
commit | f4f8db5c9230c293f454b335b777d211840463a7 (patch) | |
tree | e7af0732d45e2dd651aad1bd62fabe36c2d57768 /tex/context/base/trac-inf.lua | |
parent | b1d9ab946dc387c58a5575a360754fa04ebcad42 (diff) | |
download | context-f4f8db5c9230c293f454b335b777d211840463a7.tar.gz |
beta 2014.02.13 11:27
Diffstat (limited to 'tex/context/base/trac-inf.lua')
-rw-r--r-- | tex/context/base/trac-inf.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tex/context/base/trac-inf.lua b/tex/context/base/trac-inf.lua index 802f2e667..067cff27c 100644 --- a/tex/context/base/trac-inf.lua +++ b/tex/context/base/trac-inf.lua @@ -123,7 +123,10 @@ function statistics.show() -- this code will move local register = statistics.register register("used platform", function() - return format("%s, type: %s, binary subtree: %s",os.platform or "unknown",os.type or "unknown", environment.texos or "unknown") + local mask = lua.mask or "ascii" + return format("%s, type: %s, binary subtree: %s, symbol mask: %s (%s)", + os.platform or "unknown",os.type or "unknown", environment.texos or "unknown", + mask,mask == "utf" and "τεχ" or "tex") end) register("luatex banner", function() return lower(status.banner) |