diff options
author | Hans Hagen <pragma@wxs.nl> | 2013-12-14 13:34:00 +0100 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2013-12-14 13:34:00 +0100 |
commit | af6afe18f5ac2f2474044f44413924ac4ae9800d (patch) | |
tree | 3ee200d6b21083f0ea1b194277fa73394d1eccf4 /tex/context/base/char-ini.lua | |
parent | c651d2abf2b613fe3ac390932bceb65f9358e304 (diff) | |
download | context-af6afe18f5ac2f2474044f44413924ac4ae9800d.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 |