Skip to content
Snippets Groups Projects
Commit 0080ea58 authored by Peter Kroon's avatar Peter Kroon Committed by Marijn Haverbeke
Browse files

Added missing semicolon.

parent c958d266
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ CodeMirror.defineMode("less", function(config) {
}
else if (ch == "/") { // lesscss e.g.: .png will not be parsed as a class
if(stream.eat("/")){
state.tokenize = tokenSComment
state.tokenize = tokenSComment;
return tokenSComment(stream, state);
}else{
stream.eatWhile(/[\a-zA-Z0-9\-_.\s]/);
......
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