summaryrefslogtreecommitdiff
path: root/app-editors/atom/files/atom-marker-layer-r1.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/atom/files/atom-marker-layer-r1.patch')
-rw-r--r--app-editors/atom/files/atom-marker-layer-r1.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/app-editors/atom/files/atom-marker-layer-r1.patch b/app-editors/atom/files/atom-marker-layer-r1.patch
deleted file mode 100644
index 1dcdecbd4eba..000000000000
--- a/app-editors/atom/files/atom-marker-layer-r1.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/node_modules/text-buffer/lib/marker-layer.js
---- b/node_modules/text-buffer/lib/marker-layer.js
-@@ -192,7 +192,7 @@
- return function(markerId) {
- var marker;
- marker = _this.markersById[markerId];
-- if (!marker.matchesParams(params)) {
-+ if (marker == null || !marker.matchesParams(params)) {
- return;
- }
- return result.push(marker);