aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/scheme.lua
diff options
context:
space:
mode:
authormitchell <unknown>2020-07-08 10:18:42 -0400
committermitchell <unknown>2020-07-08 10:18:42 -0400
commitbe2b4322cbb398b33ee9641d04463b663c781e1a (patch)
tree0f4dd53dc49dfb2621e8c0ab196c7762230d842a /lexlua/scheme.lua
parent329559b74b483576a74d5f87eebf951bd12b9200 (diff)
downloadscintilla-mirror-be2b4322cbb398b33ee9641d04463b663c781e1a.tar.gz
lexlua: Convert uses of `lexer.STYLE_*` to `lexer.styles.*`.
Diffstat (limited to 'lexlua/scheme.lua')
-rw-r--r--lexlua/scheme.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/scheme.lua b/lexlua/scheme.lua
index 326f52cf5..a03e82d61 100644
--- a/lexlua/scheme.lua
+++ b/lexlua/scheme.lua
@@ -70,7 +70,7 @@ lex:add_rule('operator', token(lexer.OPERATOR, S('<>=*/+-`@%:()')))
-- Entity.
lex:add_rule('entity', token('entity', '&' * word))
-lex:add_style('entity', lexer.STYLE_VARIABLE)
+lex:add_style('entity', lexer.styles.variable)
-- Fold points.
lex:add_fold_point(lexer.OPERATOR, '(', ')')