aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla_backports/6133_30f1573f17ac.patch
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2018-03-12 18:20:24 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2018-03-12 18:20:24 -0400
commitec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672 (patch)
tree3e465bb700187ef104363c31525a73a4147c0edb /src/scintilla_backports/6133_30f1573f17ac.patch
parentf82726891b4cd2f323ce882e5aa6d71227dda887 (diff)
downloadtextadept-ec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672.tar.gz
textadept-ec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672.zip
Start using Scintilla's LongTerm3, which now includes Scintillua and Scinterm.
Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required. Since C++11 includes regex capability, drop TRE dependency.
Diffstat (limited to 'src/scintilla_backports/6133_30f1573f17ac.patch')
-rw-r--r--src/scintilla_backports/6133_30f1573f17ac.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/scintilla_backports/6133_30f1573f17ac.patch b/src/scintilla_backports/6133_30f1573f17ac.patch
deleted file mode 100644
index a69f2c14..00000000
--- a/src/scintilla_backports/6133_30f1573f17ac.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-# HG changeset patch
-# User Neil <nyamatongwe@gmail.com>
-# Date 1489632019 -39600
-# Node ID 30f1573f17ace82fd1adba69e733c4726f68e867
-# Parent 6cf19f2bf214b1d1dc0ba05412a6659142c772ec
-Fix 1 pixel unpainted as background.
-
-diff -r 6cf19f2bf214 -r 30f1573f17ac src/EditView.cxx
---- a/src/EditView.cxx Thu Mar 16 13:39:37 2017 +1100
-+++ b/src/EditView.cxx Thu Mar 16 13:40:19 2017 +1100
-@@ -1111,7 +1111,7 @@
-
- // Fill Remainder of the line
- PRectangle rcRemainder = rcSegment;
-- rcRemainder.left = rcRemainder.right + 1;
-+ rcRemainder.left = rcRemainder.right;
- if (rcRemainder.left < rcLine.left)
- rcRemainder.left = rcLine.left;
- rcRemainder.right = rcLine.right;