summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/node-par.lmt
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/node-par.lmt')
-rw-r--r--tex/context/base/mkiv/node-par.lmt48
1 files changed, 0 insertions, 48 deletions
diff --git a/tex/context/base/mkiv/node-par.lmt b/tex/context/base/mkiv/node-par.lmt
deleted file mode 100644
index af3125d23..000000000
--- a/tex/context/base/mkiv/node-par.lmt
+++ /dev/null
@@ -1,48 +0,0 @@
-if not modules then modules = { } end modules ['node-par'] = {
- 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"
-}
-
-local starttiming = statistics.starttiming
-local stoptiming = statistics.stoptiming
-
-local sequencers = utilities.sequencers
-
--- This are called a lot!
-
-local actions = nodes.tasks.actions("everypar")
-
-local function everypar(head)
- starttiming(builders)
- head = actions(head)
- stoptiming(builders)
- return head
-end
-
-callbacks.register("insert_par",everypar,"after paragraph start")
-
-local actions = sequencers.new {
- name = "paragraph",
- arguments = "mode,indented",
- returnvalues = "indented",
- results = "indented",
-}
-
-sequencers.appendgroup(actions,"before") -- user
-sequencers.appendgroup(actions,"system") -- private
-sequencers.appendgroup(actions,"after" ) -- user
-
-local function paragraph(mode,indented)
- local runner = actions.runner
- if runner then
- starttiming(builders)
- indented = runner(mode,indented)
- stoptiming(builders)
- end
- return indented
-end
-
-callbacks.register("begin_paragraph",paragraph,"before paragraph start")