summaryrefslogtreecommitdiff
path: root/tex/context/base/luat-run.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2010-02-22 19:38:00 +0100
committerHans Hagen <pragma@wxs.nl>2010-02-22 19:38:00 +0100
commita81728fa7c7e1b92d436835ac4019b2e46f80853 (patch)
tree4add4047ed2e858f96a22f5f9350983b0b1a47c1 /tex/context/base/luat-run.lua
parent8b61273b8c492e094d65764f3151d779d2f7c6cc (diff)
downloadcontext-a81728fa7c7e1b92d436835ac4019b2e46f80853.tar.gz
beta 2010.02.22 19:38
Diffstat (limited to 'tex/context/base/luat-run.lua')
-rw-r--r--tex/context/base/luat-run.lua17
1 files changed, 11 insertions, 6 deletions
diff --git a/tex/context/base/luat-run.lua b/tex/context/base/luat-run.lua
index f2072f74a..b64a99fc6 100644
--- a/tex/context/base/luat-run.lua
+++ b/tex/context/base/luat-run.lua
@@ -61,9 +61,14 @@ end
-- this can be done later
-callbacks.register('start_run', main.start, "actions performed at the beginning of a run")
-callbacks.register('stop_run', main.stop, "actions performed at the end of a run")
-callbacks.register('report_output_pages', main.report_output_pages, "actions performed when reporting pages")
-callbacks.register('report_output_log' , main.report_output_log, "actions performed when reporting log file")
-callbacks.register('start_page_number' , main.start_shipout_page, "actions performed at the beginning of a shipout")
-callbacks.register('stop_page_number' , main.stop_shipout_page, "actions performed at the end of a shipout")
+callbacks.register('start_run', main.start, "actions performed at the beginning of a run")
+callbacks.register('stop_run', main.stop, "actions performed at the end of a run")
+
+callbacks.register('report_output_pages', main.report_output_pages, "actions performed when reporting pages")
+callbacks.register('report_output_log', main.report_output_log, "actions performed when reporting log file")
+
+callbacks.register('start_page_number', main.start_shipout_page, "actions performed at the beginning of a shipout")
+callbacks.register('stop_page_number', main.stop_shipout_page, "actions performed at the end of a shipout")
+
+callbacks.register('process_input_buffer', false, "actions performed when reading data")
+callbacks.register('process_output_buffer', false, "actions performed when writing data")