diff options
author | 2018-03-12 18:20:24 -0400 | |
---|---|---|
committer | 2018-03-12 18:20:24 -0400 | |
commit | ec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672 (patch) | |
tree | 3e465bb700187ef104363c31525a73a4147c0edb /src/scintilla_backports/6137_c3bba4a9193e.patch | |
parent | f82726891b4cd2f323ce882e5aa6d71227dda887 (diff) | |
download | textadept-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/6137_c3bba4a9193e.patch')
-rw-r--r-- | src/scintilla_backports/6137_c3bba4a9193e.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/scintilla_backports/6137_c3bba4a9193e.patch b/src/scintilla_backports/6137_c3bba4a9193e.patch deleted file mode 100644 index d87dec5c..00000000 --- a/src/scintilla_backports/6137_c3bba4a9193e.patch +++ /dev/null @@ -1,20 +0,0 @@ -# HG changeset patch -# User Neil <nyamatongwe@gmail.com> -# Date 1489633522 -39600 -# Node ID c3bba4a9193ea55175c309109e5bab8c87f2a0bd -# Parent 2b25287311d015ecc9971c101f0f40ae00c8ca4e -For single phase drawing ensure remainder of line filled by always filling -in tag fold drawing. - -diff -r 2b25287311d0 -r c3bba4a9193e src/EditView.cxx ---- a/src/EditView.cxx Thu Mar 16 14:04:19 2017 +1100 -+++ b/src/EditView.cxx Thu Mar 16 14:05:22 2017 +1100 -@@ -1106,7 +1106,7 @@ - } - } - -- if ((phasesDraw != phasesOne) && (phase & drawBack)) { -+ if (phase & drawBack) { - surface->FillRectangle(rcSegment, textBack); - - // Fill Remainder of the line |