summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/math-noa.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-05-13 23:29:40 +0000
committerKarl Berry <karl@freefriends.org>2017-05-13 23:29:40 +0000
commitdd64b2da8b67c42251d02ce422da9cb4643043e1 (patch)
tree84e1613005c402bf62b705a7566389bd02d5a566 /Master/texmf-dist/tex/context/base/mkiv/math-noa.lua
parent4eaef7e69e8c1e2ede97a3b50019d01415055717 (diff)
context (May 12 23:56)
git-svn-id: svn://tug.org/texlive/trunk@44324 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/math-noa.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/math-noa.lua10
1 files changed, 8 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/math-noa.lua b/Master/texmf-dist/tex/context/base/mkiv/math-noa.lua
index 4db35c2d6f8..f9e8c9f70ee 100644
--- a/Master/texmf-dist/tex/context/base/mkiv/math-noa.lua
+++ b/Master/texmf-dist/tex/context/base/mkiv/math-noa.lua
@@ -585,9 +585,10 @@ do
end
local newchar = remapalphabets(char,a,g)
if newchar then
- if characters[newchar] then
+ local newchardata = characters[newchar]
+ if newchardata then
if trace_remapping then
- report_remap("char",font,char,newchar)
+ report_remap("char",font,char,newchar,newchardata.commands and " (virtual)" or "")
end
if trace_analyzing then
setnodecolor(pointer,"font:isol")
@@ -618,6 +619,11 @@ do
report_remap("char",font,char,newchar," fails (no fallback style)")
end
end
+ elseif trace_remapping then
+ local chardata = characters[char]
+ if chardata and chardata.commands then
+ report_remap("char",font,char,char," (virtual)")
+ end
end
end
if not characters[char] then