summaryrefslogtreecommitdiff
path: root/tex/generic/context/luatex/luatex-basics.tex
diff options
context:
space:
mode:
Diffstat (limited to 'tex/generic/context/luatex/luatex-basics.tex')
-rw-r--r--tex/generic/context/luatex/luatex-basics.tex12
1 files changed, 7 insertions, 5 deletions
diff --git a/tex/generic/context/luatex/luatex-basics.tex b/tex/generic/context/luatex/luatex-basics.tex
index 1180c68e6..7b84c7093 100644
--- a/tex/generic/context/luatex/luatex-basics.tex
+++ b/tex/generic/context/luatex/luatex-basics.tex
@@ -31,8 +31,8 @@
local registered = {}
function gadgets.functions.reverve()
- local numb = newtoken.scan_int()
- local name = newtoken.scan_string()
+ local numb = token.scan_int()
+ local name = token.scan_string()
local okay = string.gsub(name,"[\string\\ ]","")
registered[okay] = numb
texio.write_nl("reserving lua function '"..okay.."' with number "..numb)
@@ -62,15 +62,18 @@
% an example of usage (if we ever support it it will go to the plain gadgets module):
%
+% \newluafunction\UcharcatLuaOne
+% \newluafunction\UcharcatLuaTwo
+%
% \directlua {
%
% local cct = nil
% local chr = nil
%
% gadgets.functions.register("UcharcatLuaOne",function()
-% chr = newtoken.scan_int()
+% chr = token.scan_int()
% cct = tex.getcatcode(chr)
-% tex.setcatcode(chr,newtoken.scan_int())
+% tex.setcatcode(chr,token.scan_int())
% tex.sprint(unicode.utf8.char(chr))
% end)
%
@@ -89,5 +92,4 @@
% A:\the\catcode65:\Ucharcat 65 5:A:\the\catcode65\par
% A:\the\catcode65:\Ucharcat 65 11:A:\the\catcode65\par
-
\endinput