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/6136_2b25287311d0.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/6136_2b25287311d0.patch')
-rw-r--r-- | src/scintilla_backports/6136_2b25287311d0.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/scintilla_backports/6136_2b25287311d0.patch b/src/scintilla_backports/6136_2b25287311d0.patch deleted file mode 100644 index cea704d2..00000000 --- a/src/scintilla_backports/6136_2b25287311d0.patch +++ /dev/null @@ -1,43 +0,0 @@ -# HG changeset patch -# User Neil <nyamatongwe@gmail.com> -# Date 1489633459 -39600 -# Node ID 2b25287311d015ecc9971c101f0f40ae00c8ca4e -# Parent 34665edc7efdd526c62e426bb0f6267f64e156e7 -For single phase drawing ensure edges and mark underline drawn over fold tags by -moving drawing of edge line and mark underline after fold tags. - -diff -r 34665edc7efd -r 2b25287311d0 src/EditView.cxx ---- a/src/EditView.cxx Thu Mar 16 13:49:54 2017 +1100 -+++ b/src/EditView.cxx Thu Mar 16 14:04:19 2017 +1100 -@@ -1857,8 +1857,10 @@ - - if (phase & drawIndicatorsBack) { - DrawIndicators(surface, model, vsDraw, ll, line, xStart, rcLine, subLine, lineRange.end, true, model.hoverIndicatorPos); -- DrawEdgeLine(surface, vsDraw, ll, rcLine, lineRange, xStart); -- DrawMarkUnderline(surface, model, vsDraw, line, rcLine); -+ if (phasesDraw != phasesOne) { -+ DrawEdgeLine(surface, vsDraw, ll, rcLine, lineRange, xStart); -+ DrawMarkUnderline(surface, model, vsDraw, line, rcLine); -+ } - } - - if (phase & drawText) { -@@ -1874,14 +1876,15 @@ - DrawIndicators(surface, model, vsDraw, ll, line, xStart, rcLine, subLine, lineRange.end, false, model.hoverIndicatorPos); - } - -- // End of the drawing of the current line -+ DrawFoldDisplayText(surface, model, vsDraw, ll, line, xStart, rcLine, subLine, subLineStart, phase); -+ - if (phasesDraw == phasesOne) { - DrawEOL(surface, model, vsDraw, ll, rcLine, line, lineRange.end, - xStart, subLine, subLineStart, background); -+ DrawEdgeLine(surface, vsDraw, ll, rcLine, lineRange, xStart); -+ DrawMarkUnderline(surface, model, vsDraw, line, rcLine); - } - -- DrawFoldDisplayText(surface, model, vsDraw, ll, line, xStart, rcLine, subLine, subLineStart, phase); -- - if (!hideSelection && (phase & drawSelectionTranslucent)) { - DrawTranslucentSelection(surface, model, vsDraw, ll, line, rcLine, subLine, lineRange, xStart); - } |