diff options
author | Marius <mariausol@gmail.com> | 2013-12-14 14:40:29 +0200 |
---|---|---|
committer | Marius <mariausol@gmail.com> | 2013-12-14 14:40:29 +0200 |
commit | 0206a143cbba88e11f40e4aabb9350b24a93a8ac (patch) | |
tree | b6155e5c7b82b42c6f7fda387491c283cf19eb7f /tex/context/base/char-ini.lua | |
parent | a580b214e706b8a24a181514b04b9130120e8763 (diff) | |
download | context-0206a143cbba88e11f40e4aabb9350b24a93a8ac.tar.gz |
beta 2013.12.14 13:34
Diffstat (limited to 'tex/context/base/char-ini.lua')
-rw-r--r-- | tex/context/base/char-ini.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/char-ini.lua b/tex/context/base/char-ini.lua index a94aa6b5f..d2236f871 100644 --- a/tex/context/base/char-ini.lua +++ b/tex/context/base/char-ini.lua @@ -920,13 +920,13 @@ if not characters.superscripts then if what == "super" then if #specials == 2 then superscripts[k] = specials[2] - else + elseif trace_defining then report_defining("ignoring %s %a, char %c, description %a","superscript",ustring(k),k,v.description) end elseif what == "sub" then if #specials == 2 then subscripts[k] = specials[2] - else + elseif trace_defining then report_defining("ignoring %s %a, char %c, description %a","subscript",ustring(k),k,v.description) end end |