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/6340_ebec660dcf48.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/6340_ebec660dcf48.patch')
-rw-r--r-- | src/scintilla_backports/6340_ebec660dcf48.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/scintilla_backports/6340_ebec660dcf48.patch b/src/scintilla_backports/6340_ebec660dcf48.patch deleted file mode 100644 index ba1d1e37..00000000 --- a/src/scintilla_backports/6340_ebec660dcf48.patch +++ /dev/null @@ -1,35 +0,0 @@ -# HG changeset patch -# User Neil <nyamatongwe@gmail.com> -# Date 1499397575 -36000 -# Node ID ebec660dcf48ec92301441140550f67d3e7ceb29 -# Parent 79f86be9e988efc5b1462ae549c271c4f3a1b82c -Bug [#1949]. Fix drawing failure in wrap mode for GTK+ 2.x. - -diff -r 79f86be9e988 -r ebec660dcf48 doc/ScintillaHistory.html ---- a/doc/ScintillaHistory.html Fri Jul 07 12:55:23 2017 +1000 -+++ b/doc/ScintillaHistory.html Fri Jul 07 13:19:35 2017 +1000 -@@ -572,6 +572,7 @@ - <li> - Fix drawing failure when in wrap mode for delete to start/end of line which - affects later lines but did not redraw them. -+ Also fixed drawing for wrap mode on GTK+ 2.x. - <a href="http://sourceforge.net/p/scintilla/bugs/1949/">Bug #1949</a>. - </li> - <li> -diff -r 79f86be9e988 -r ebec660dcf48 gtk/ScintillaGTK.cxx ---- a/gtk/ScintillaGTK.cxx Fri Jul 07 12:55:23 2017 +1000 -+++ b/gtk/ScintillaGTK.cxx Fri Jul 07 13:19:35 2017 +1000 -@@ -2599,11 +2599,12 @@ - Paint(surfaceWindow.get(), rcPaint); - surfaceWindow->Release(); - cairo_destroy(cr); - } -- if (paintState == paintAbandoned) { -+ if ((paintState == paintAbandoned) || repaintFullWindow) { - // Painting area was insufficient to cover new styling or brace highlight positions - FullPaint(); - } - paintState = notPainting; -+ repaintFullWindow = false; - - if (rgnUpdate) { |