summaryrefslogtreecommitdiff
path: root/tex/context/base/node-tex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/node-tex.lua')
-rw-r--r--tex/context/base/node-tex.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/node-tex.lua b/tex/context/base/node-tex.lua
index 8f4a65450..c9d3091df 100644
--- a/tex/context/base/node-tex.lua
+++ b/tex/context/base/node-tex.lua
@@ -26,12 +26,12 @@ function kernel.hyphenation(head)
end
function kernel.ligaturing(head)
- local head, tail, done = ligaturing(head)
+ local head, tail, done = ligaturing(head) -- we return 3 values indeed
return head, done
end
function kernel.kerning(head)
- local head, tail, done = kerning(head)
+ local head, tail, done = kerning(head) -- we return 3 values indeed
return head, done
end