summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-05-14 18:30:43 +0000
committerKarl Berry <karl@freefriends.org>2010-05-14 18:30:43 +0000
commitf3178743528fed675598b87b938a61115fe90cd6 (patch)
tree7f78b60d38ba903d3d6358872a0005d1ee562550 /Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex
parent3e9a62cbf45d825eb817c535b9ecb8563d081902 (diff)
luatextra update (13may10)
git-svn-id: svn://tug.org/texlive/trunk@18252 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex')
-rw-r--r--Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex45
1 files changed, 0 insertions, 45 deletions
diff --git a/Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex b/Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex
deleted file mode 100644
index 0ca669b26c5..00000000000
--- a/Master/texmf-dist/doc/luatex/luatextra/luamcallbacks-test.tex
+++ /dev/null
@@ -1,45 +0,0 @@
-%%
-%% This is file `luamcallbacks-test.tex',
-%% generated with the docstrip utility.
-%%
-%% The original source files were:
-%%
-%% luamcallbacks.dtx (with options: `test')
-%% This is a generated file.
-%%
-%% Copyright (C) 2009 by Elie Roux <elie.roux@telecom-bretagne.eu>
-%%
-%% This work is under the CC0 license.
-%%
-%% This work consists of the main source file luamcallbacks.dtx
-%% and the derived files
-%% luamcallbacks.lua, luamcallbacks-test.tex, luamcallbacks.pdf.
-%%
-\input luatextra.sty
-
-This is just a test file.
-\luadirect{
-local function one(head,...)
- texio.write_nl("I'm number 1")
- return head, true
-end
-
-local function two(head,...)
- texio.write_nl("I'm number 2")
- return head, true
-end
-
-local function three(head,...)
- texio.write_nl("I'm number 3")
- return head, true
-end
-callback.add("hpack_filter",one,"my example function one",1)
-callback.add("hpack_filter",two,"my example function two",2)
-callback.add("hpack_filter",three,"my example function three",1)
-callback.remove("hpack_filter","my example function three")
-}
-
-\bye
-\endinput
-%%
-%% End of file `luamcallbacks-test.tex'.