summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElvis Pranskevichus <elvis@magic.io>2017-03-30 09:05:22 -0400
committerPatrice Clement <monsieurp@gentoo.org>2017-04-08 23:21:19 +0200
commit2e1f7ec8103c4e7dbeca50f558438d6429dd3589 (patch)
tree0ce4f72203c1fa033dfc372bc22ea646730619fc /app-editors/atom/files
parentdev-python/guessit: version bump to 2.1.2. (diff)
downloadgentoo-2e1f7ec8103c4e7dbeca50f558438d6429dd3589.tar.gz
gentoo-2e1f7ec8103c4e7dbeca50f558438d6429dd3589.tar.bz2
gentoo-2e1f7ec8103c4e7dbeca50f558438d6429dd3589.zip
app-editors/atom: version bump to 1.15.0.
Gentoo-Bug: https://bugs.gentoo.org/608478 Package-Manager: Portage-2.3.4, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/4330
Diffstat (limited to 'app-editors/atom/files')
-rw-r--r--app-editors/atom/files/atom-marker-layer.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/app-editors/atom/files/atom-marker-layer.patch b/app-editors/atom/files/atom-marker-layer.patch
new file mode 100644
index 000000000000..2d797aa293da
--- /dev/null
+++ b/app-editors/atom/files/atom-marker-layer.patch
@@ -0,0 +1,11 @@
+--- a/build/app/node_modules/text-buffer/lib/marker-layer.js
+--- b/build/app/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);