Skip to content
Snippets Groups Projects
Commit b16f8421 authored by ks-ifware's avatar ks-ifware Committed by Marijn Haverbeke
Browse files

A couple instances of "lua-*" styles weren't updated to the new style format.

parent 1ac932e3
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ CodeMirror.defineMode("lua", function(config, parserConfig) {
else if (builtins.test(word)) style = "builtin";
else if (specials.test(word)) style = "variable-2";
}
if ((style != "lua-comment") && (style != "lua-string")){
if ((style != "comment") && (style != "string")){
if (indentTokens.test(word)) ++state.indentDepth;
else if (dedentTokens.test(word)) --state.indentDepth;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment