mirror of
https://github.com/zadam/trilium.git
synced 2025-12-24 09:10:02 +01:00
ckeditor 5.60.0
This commit is contained in:
4
libraries/codemirror/mode/erlang/erlang.js
vendored
4
libraries/codemirror/mode/erlang/erlang.js
vendored
@@ -339,8 +339,8 @@ CodeMirror.defineMode("erlang", function(cmCfg) {
|
||||
}
|
||||
|
||||
function lookahead(stream) {
|
||||
var m = stream.match(/([\n\s]+|%[^\n]*\n)*(.)/,false);
|
||||
return m ? m.pop() : "";
|
||||
var m = stream.match(/^\s*([^\s%])/, false)
|
||||
return m ? m[1] : "";
|
||||
}
|
||||
|
||||
function is_member(element,list) {
|
||||
|
||||
Reference in New Issue
Block a user