summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/node-tex.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2018-05-12 01:19:03 +0200
committerContext Git Mirror Bot <phg42.2a@gmail.com>2018-05-12 01:19:03 +0200
commit77e216e323271fb85d508b7206b13c980540b74b (patch)
tree5b4053c2bbe5190e28c0dce89653c7b13aea0642 /tex/context/base/mkiv/node-tex.lua
parentd817aef76ab8b606c02bd0636661b634b43a68a6 (diff)
downloadcontext-77e216e323271fb85d508b7206b13c980540b74b.tar.gz
2018-05-12 00:16:00
Diffstat (limited to 'tex/context/base/mkiv/node-tex.lua')
-rw-r--r--tex/context/base/mkiv/node-tex.lua18
1 files changed, 10 insertions, 8 deletions
diff --git a/tex/context/base/mkiv/node-tex.lua b/tex/context/base/mkiv/node-tex.lua
index c9d3091df..81ed80d15 100644
--- a/tex/context/base/mkiv/node-tex.lua
+++ b/tex/context/base/mkiv/node-tex.lua
@@ -10,9 +10,11 @@ builders = builders or { }
local kernel = builders.kernel or { }
builders.kernel = kernel
+local nuts = nodes.nuts
+
local hyphenate = lang.hyphenate
-local ligaturing = node.ligaturing
-local kerning = node.kerning
+local ligaturing = nuts.ligaturing
+local kerning = nuts.kerning
kernel.originals = {
hyphenate = hyphenate,
@@ -21,18 +23,18 @@ kernel.originals = {
}
function kernel.hyphenation(head)
- local done = hyphenate(head)
- return head, done
+ hyphenate(head)
+ return head
end
function kernel.ligaturing(head)
- local head, tail, done = ligaturing(head) -- we return 3 values indeed
- return head, done
+ local head, tail = ligaturing(head)
+ return head
end
function kernel.kerning(head)
- local head, tail, done = kerning(head) -- we return 3 values indeed
- return head, done
+ local head, tail = kerning(head)
+ return head
end
callbacks.register('hyphenate' , false, "normal hyphenation routine, called elsewhere")