You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-editors/atom/files/atom-marker-layer-r1.patch

12 lines
418 B

--- 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);