diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/context/documents/general/manuals/luametatex.pdf | bin | 1219850 -> 1219901 bytes | |||
-rw-r--r-- | doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex | 8 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/context/documents/general/manuals/luametatex.pdf b/doc/context/documents/general/manuals/luametatex.pdf Binary files differindex 6e0f969b6..9575067f2 100644 --- a/doc/context/documents/general/manuals/luametatex.pdf +++ b/doc/context/documents/general/manuals/luametatex.pdf diff --git a/doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex b/doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex index 1da447fef..9d25adb2f 100644 --- a/doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex +++ b/doc/context/sources/general/manuals/luametatex/luametatex-metapost.tex @@ -476,10 +476,10 @@ still preliminary and mostly provided as reminder. The types and token codes are numbers but they actually depend on the implementation (although changes are unlikely). The types of data structures can -be queried with \type {mplib.types()}: +be queried with \type {mplib.gettypes()}: \dontleavehmode \startluacode - local t = mplib.types() + local t = mplib.gettypes() for i=0,#t do if i > 0 then context(", ") @@ -488,10 +488,10 @@ be queried with \type {mplib.types()}: end \stopluacode . -The command codes are available with \type {mplib.codes()}: +The command codes are available with \type {mplib.getcodes()}: \dontleavehmode \startluacode - local t = mplib.codes() + local t = mplib.getcodes() for i=0,#t do if i > 0 then context(", ") |