summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/eiffel/eiffel.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/eiffel/eiffel.js')
-rwxr-xr-xpublic/vendor/codemirror/mode/eiffel/eiffel.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/public/vendor/codemirror/mode/eiffel/eiffel.js b/public/vendor/codemirror/mode/eiffel/eiffel.js
index fcdf295c..b8b70e36 100755
--- a/public/vendor/codemirror/mode/eiffel/eiffel.js
+++ b/public/vendor/codemirror/mode/eiffel/eiffel.js
@@ -84,7 +84,6 @@ CodeMirror.defineMode("eiffel", function() {
'or'
]);
var operators = wordObj([":=", "and then","and", "or","<<",">>"]);
- var curPunc;
function chain(newtok, stream, state) {
state.tokenize.push(newtok);
@@ -92,7 +91,6 @@ CodeMirror.defineMode("eiffel", function() {
}
function tokenBase(stream, state) {
- curPunc = null;
if (stream.eatSpace()) return null;
var ch = stream.next();
if (ch == '"'||ch == "'") {