summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/addon/search/searchcursor.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/addon/search/searchcursor.js')
-rwxr-xr-xpublic/vendor/codemirror/addon/search/searchcursor.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/vendor/codemirror/addon/search/searchcursor.js b/public/vendor/codemirror/addon/search/searchcursor.js
index 97088bf1..b70242ee 100755
--- a/public/vendor/codemirror/addon/search/searchcursor.js
+++ b/public/vendor/codemirror/addon/search/searchcursor.js
@@ -177,9 +177,9 @@
});
CodeMirror.defineExtension("selectMatches", function(query, caseFold) {
- var ranges = [], next;
+ var ranges = [];
var cur = this.getSearchCursor(query, this.getCursor("from"), caseFold);
- while (next = cur.findNext()) {
+ while (cur.findNext()) {
if (CodeMirror.cmpPos(cur.to(), this.getCursor("to")) > 0) break;
ranges.push({anchor: cur.from(), head: cur.to()});
}