summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/toks-ini.lua
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 /tex/context/base/mkiv/toks-ini.lua
parent56c53b52bfa815946a62fdb28ee432b5d849b9c9 (diff)
downloadcontext-2e657baa195eb8a5011a0f08eeb32bd3396ea1bf.tar.gz
2020-06-25 10:58:00
Diffstat (limited to 'tex/context/base/mkiv/toks-ini.lua')
-rw-r--r--tex/context/base/mkiv/toks-ini.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/tex/context/base/mkiv/toks-ini.lua b/tex/context/base/mkiv/toks-ini.lua
index 0ac5dcc50..184a17489 100644
--- a/tex/context/base/mkiv/toks-ini.lua
+++ b/tex/context/base/mkiv/toks-ini.lua
@@ -43,6 +43,7 @@ end
local scan_toks = token.scan_toks
local scan_string = token.scan_string
local scan_argument = token.scan_argument
+local scan_delimited = token.scan_delimited
local scan_tokenlist = token.scan_tokenlist
local scan_int = token.scan_int
local scan_code = token.scan_code
@@ -55,6 +56,7 @@ local scan_keyword_cs = token.scan_keyword_cs or scan_keyword
local scan_token = token.scan_token
local scan_box = token.scan_box
local scan_word = token.scan_word
+local scan_letters = token.scan_letters or scan_word -- lmtx
local scan_key = token.scan_key
local scan_value = token.scan_value
local scan_char = token.scan_char
@@ -191,11 +193,13 @@ tokens.scanners = { -- these expand
count = scan_int,
string = scan_string,
argument = scan_argument,
+ delimited = scan_delimited,
tokenlist = scan_tokenlist,
verbatim = scan_verbatim, -- detokenize
code = scan_code,
tokencode = scan_token_code,
word = scan_word,
+ letters = scan_letters,
key = scan_key,
value = scan_value,
char = scan_char,