diff options
author | mitchell <unknown> | 2019-04-08 23:49:12 -0400 |
---|---|---|
committer | mitchell <unknown> | 2019-04-08 23:49:12 -0400 |
commit | fae12a690b7c92212148350af6d02b82f628ae21 (patch) | |
tree | 46737028aa9bd166998577b97b1bc12727fc15e0 | |
parent | 5f97b5a7ed1872dd93e0bde2a937692fb475a2bd (diff) | |
download | scintilla-mirror-fae12a690b7c92212148350af6d02b82f628ae21.tar.gz |
lexlua: Fixed rule order in YAML lexer.
-rw-r--r-- | lexlua/yaml.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/yaml.lua b/lexlua/yaml.lua index 41d6ee341..0b0bd983a 100644 --- a/lexlua/yaml.lua +++ b/lexlua/yaml.lua @@ -97,9 +97,9 @@ M._rules = { {'comment', comment}, {'doc_bounds', doc_bounds}, {'key', key}, + {'string', string}, {'literal', literal}, {'timestamp', ts}, - {'string', string}, {'number', number}, {'constant', constant}, {'type', type}, |