summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-itc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/typo-itc.lua')
-rw-r--r--tex/context/base/typo-itc.lua18
1 files changed, 8 insertions, 10 deletions
diff --git a/tex/context/base/typo-itc.lua b/tex/context/base/typo-itc.lua
index 57b4e38b8..ef44a7f28 100644
--- a/tex/context/base/typo-itc.lua
+++ b/tex/context/base/typo-itc.lua
@@ -33,8 +33,6 @@ local unsetvalue = attributes.unsetvalue
local new_correction_kern = nodes.pool.fontkern
local new_correction_glue = nodes.pool.glue
-local points = number.points
-
local fonthashes = fonts.hashes
local fontdata = fonthashes.identifiers
local italicsdata = fonthashes.italics
@@ -69,7 +67,7 @@ local function setitalicinfont(font,char)
end
end
if trace_italics then
- report_italics("setting italic correction of %s (U+%05X) of font %s to %s",utfchar(char),char,font,points(italic))
+ report_italics("setting italic correction of %C of font %a to %p",char,font,italic)
end
character.italic_correction = italic or 0
end
@@ -100,18 +98,18 @@ local function process(namespace,attribute,head)
if italic ~= 0 then
if data then
if trace_italics then
- report_italics("ignoring %s between italic %s and italic %s",points(italic),utfchar(prevchar),utfchar(char))
+ report_italics("ignoring %p between italic %C and italic %C",italic,prevchar,char)
end
else
if trace_italics then
- report_italics("inserting %s between italic %s and regular %s",points(italic),utfchar(prevchar),utfchar(char))
+ report_italics("inserting %p between italic %C and regular %C",italic,prevchar,char)
end
insert_node_after(head,previous,new_correction_kern(italic))
done = true
end
elseif inserted and data then
if trace_italics then
- report_italics("deleting last correction before %s",utfchar(char))
+ report_italics("deleting last correction before %C",char)
end
delete_node(head,inserted)
else
@@ -154,7 +152,7 @@ local function process(namespace,attribute,head)
elseif id == glue_code then
if italic ~= 0 then
if trace_italics then
- report_italics("inserting %s between italic %s and glue",points(italic),utfchar(prevchar))
+ report_italics("inserting %p between italic %C and glue",italic,prevchar)
end
inserted = new_correction_glue(italic) -- maybe just add ? else problem with penalties
insert_node_after(head,previous,inserted)
@@ -163,7 +161,7 @@ local function process(namespace,attribute,head)
end
elseif italic ~= 0 then
if trace_italics then
- report_italics("inserting %s between italic %s and whatever",points(italic),utfchar(prevchar))
+ report_italics("inserting %p between italic %C and whatever",italic,prevchar)
end
inserted = nil
insert_node_after(head,previous,new_correction_kern(italic))
@@ -174,7 +172,7 @@ local function process(namespace,attribute,head)
end
if italic ~= 0 and lastattr > 1 then -- more control is needed here
if trace_italics then
- report_italics("inserting %s between italic %s and end of list",points(italic),utfchar(prevchar))
+ report_italics("inserting %p between italic %C and end of list",italic,prevchar)
end
insert_node_after(head,previous,new_correction_kern(italic))
done = true
@@ -235,7 +233,7 @@ function commands.setupitaliccorrection(option) -- no grouping !
texattribute[a_italics] = variant
end
if trace_italics then
- report_italics("force: %s, variant: %s",tostring(forcedvariant),tostring(variant ~= unsetvalue and variant))
+ report_italics("forcing %a, variant %a",forcedvariant,variant ~= unsetvalue and variant)
end
end