summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/cypher/cypher.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/cypher/cypher.js')
-rwxr-xr-xpublic/vendor/codemirror/mode/cypher/cypher.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/vendor/codemirror/mode/cypher/cypher.js b/public/vendor/codemirror/mode/cypher/cypher.js
index 9decf307..e218d473 100755
--- a/public/vendor/codemirror/mode/cypher/cypher.js
+++ b/public/vendor/codemirror/mode/cypher/cypher.js
@@ -19,7 +19,7 @@
CodeMirror.defineMode("cypher", function(config) {
var tokenBase = function(stream/*, state*/) {
- var ch = stream.next(), curPunc = null;
+ var ch = stream.next();
if (ch === "\"" || ch === "'") {
stream.match(/.+?["']/);
return "string";