summaryrefslogtreecommitdiff
path: root/doc/context/sources/general/manuals/cld/cld-macros.tex
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2020-06-25 12:13:32 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2020-06-25 12:13:32 +0200
commit2e657baa195eb8a5011a0f08eeb32bd3396ea1bf (patch)
tree183b7c9ce7a4f897c57743d6bbfe31ab0db42495 /doc/context/sources/general/manuals/cld/cld-macros.tex
parent56c53b52bfa815946a62fdb28ee432b5d849b9c9 (diff)
downloadcontext-2e657baa195eb8a5011a0f08eeb32bd3396ea1bf.tar.gz
2020-06-25 10:58:00
Diffstat (limited to 'doc/context/sources/general/manuals/cld/cld-macros.tex')
-rw-r--r--doc/context/sources/general/manuals/cld/cld-macros.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/context/sources/general/manuals/cld/cld-macros.tex b/doc/context/sources/general/manuals/cld/cld-macros.tex
index a177db9f8..7b6f578e7 100644
--- a/doc/context/sources/general/manuals/cld/cld-macros.tex
+++ b/doc/context/sources/general/manuals/cld/cld-macros.tex
@@ -128,9 +128,9 @@ local function startmore(opt_1)
context.startnarrower()
end
-local function stopmore(opt_1)
+local function stopmore()
context.stopnarrower()
- context("stop more, options: %s",interfaces.tolist(opt_1))
+ context("stop more")
context.stopnarrower()
end
@@ -175,7 +175,7 @@ If needed you can access the body of a macro. Take for instance:
\typebuffer \getbuffer
-The following example demonsttaies how we can look inside these macros. You need
+The following example demonstrates how we can look inside these macros. You need
to be aware of the fact that the whole blob of \LUA\ codes is finished before we
return to \TEX, so when we pipe the meaning of \type {TestB} back to \TEX\ it
only gets expanded afterwards. We can use a function to get back to \LUA. It's