summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/node-tex.lmt
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/node-tex.lmt')
-rw-r--r--tex/context/base/mkiv/node-tex.lmt39
1 files changed, 0 insertions, 39 deletions
diff --git a/tex/context/base/mkiv/node-tex.lmt b/tex/context/base/mkiv/node-tex.lmt
deleted file mode 100644
index aae084740..000000000
--- a/tex/context/base/mkiv/node-tex.lmt
+++ /dev/null
@@ -1,39 +0,0 @@
-if not modules then modules = { } end modules ['node-tex'] = {
- version = 1.001,
- comment = "companion to node-ini.mkiv",
- author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
- copyright = "PRAGMA ADE / ConTeXt Development Team",
- license = "see context related readme files"
-}
-
-builders = builders or { }
-local kernel = builders.kernel or { }
-builders.kernel = kernel
-
-local nuts = nodes.nuts
-
-local hyphenate = language.hyphenate
-
-local hyphenating = nuts.hyphenating
-local ligaturing = nuts.ligaturing
-local kerning = nuts.kerning
-
-function kernel.hyphenation(head)
- return (hyphenate(head)) -- nodes !
-end
-
-function kernel.hyphenating(head)
- return (hyphenating(head))
-end
-
-function kernel.ligaturing(head)
- return (ligaturing(head))
-end
-
-function kernel.kerning(head)
- return (kerning(head))
-end
-
-callbacks.register('hyphenate' , false, "normal hyphenation routine, called elsewhere")
-callbacks.register('ligaturing', false, "normal ligaturing routine, called elsewhere")
-callbacks.register('kerning' , false, "normal kerning routine, called elsewhere")