summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-16 21:11:40 +0000
committerKarl Berry <karl@freefriends.org>2020-03-16 21:11:40 +0000
commit2492300860bc8d58013520b5f27518e886d19216 (patch)
tree77e721f9063fa9306199d9cb24b20fe1febd0887 /Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua
parent5f4bef024b26c01d41b3700e8e320b8a1145b5a9 (diff)
context (16mar20)
git-svn-id: svn://tug.org/texlive/trunk@54364 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua b/Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua
index 64701abcc6c..c3a583fe494 100644
--- a/Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua
+++ b/Master/texmf-dist/tex/context/base/mkiv/typo-itc.lua
@@ -45,7 +45,7 @@ local getkern = nuts.getkern
local getheight = nuts.getheight
local insert_node_after = nuts.insert_after
-local delete_node = nuts.delete
+local remove_node = nuts.remove
local end_of_math = nuts.end_of_math
local texgetattribute = tex.getattribute
@@ -315,7 +315,7 @@ local function texthandler(head)
if trace_italics then
report_italics("deleting last correction before %s %C",char,"glyph")
end
- delete_node(prevhead,previnserted)
+ remove_node(prevhead,previnserted,true)
else
--
if replaceitalic ~= 0 then
@@ -327,7 +327,7 @@ local function texthandler(head)
if trace_italics then
report_italics("deleting last correction before %s %C","replace",char)
end
- delete_node(replacehead,replaceinserted)
+ remove_node(replacehead,replaceinserted,true)
end
--
if postitalic ~= 0 then
@@ -339,7 +339,7 @@ local function texthandler(head)
if trace_italics then
report_italics("deleting last correction before %s %C","post",char)
end
- delete_node(posthead,postinserted)
+ remove_node(posthead,postinserted,true)
end
end
--