Skip to content

Commit

Permalink
Added missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkroon authored and marijnh committed Apr 23, 2012
1 parent 73e6e3f commit 99897fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mode/clike/clike.js
Expand Up @@ -21,7 +21,7 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
}
if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
curPunc = ch;
return null
return null;
}
if (/\d/.test(ch)) {
stream.eatWhile(/[\w\.]/);
Expand Down

0 comments on commit 99897fa

Please sign in to comment.