Skip to content

Commit

Permalink
[asterisk mode] Fix bogus patch
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Aug 6, 2019
1 parent 8e200e7 commit 52eb590
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mode/asterisk/asterisk.js
Expand Up @@ -209,9 +209,9 @@ CodeMirror.defineMode("asterisk", function() {
return null;
},

blockCommentStart: jsonMode ? null : ";--",
blockCommentEnd: jsonMode ? null : "--;",
lineComment: jsonMode ? null : ";"
blockCommentStart: ";--",
blockCommentEnd: "--;",
lineComment: ";"
};
});

Expand Down

0 comments on commit 52eb590

Please sign in to comment.