diff options
author | mitchell <unknown> | 2020-07-08 10:18:42 -0400 |
---|---|---|
committer | mitchell <unknown> | 2020-07-08 10:18:42 -0400 |
commit | be2b4322cbb398b33ee9641d04463b663c781e1a (patch) | |
tree | 0f4dd53dc49dfb2621e8c0ab196c7762230d842a /lexlua/php.lua | |
parent | 329559b74b483576a74d5f87eebf951bd12b9200 (diff) | |
download | scintilla-mirror-be2b4322cbb398b33ee9641d04463b663c781e1a.tar.gz |
lexlua: Convert uses of `lexer.STYLE_*` to `lexer.styles.*`.
Diffstat (limited to 'lexlua/php.lua')
-rw-r--r-- | lexlua/php.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/php.lua b/lexlua/php.lua index 257bc955d..05589d649 100644 --- a/lexlua/php.lua +++ b/lexlua/php.lua @@ -62,7 +62,7 @@ local html = lexer.load('html') local php_start_rule = token('php_tag', '<?' * ('php' * lexer.space)^-1) local php_end_rule = token('php_tag', '?>') html:embed(lex, php_start_rule, php_end_rule) -lex:add_style('php_tag', lexer.STYLE_EMBEDDED) +lex:add_style('php_tag', lexer.styles.embedded) -- Fold points. lex:add_fold_point('php_tag', '<?', '?>') |