aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla_backports/6397_2db0528f34b5.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/6397_2db0528f34b5.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/6397_2db0528f34b5.patch')
-rw-r--r--src/scintilla_backports/6397_2db0528f34b5.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/scintilla_backports/6397_2db0528f34b5.patch b/src/scintilla_backports/6397_2db0528f34b5.patch
deleted file mode 100644
index 098c700e..00000000
--- a/src/scintilla_backports/6397_2db0528f34b5.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-# HG changeset patch
-# User Zufu Liu
-# Date 1508018757 -39600
-# Node ID 2db0528f34b5b79890fd6c04897091474c18839a
-# Parent 85f99a613e89325580b2202031b99f88e1c73bb1
-Bug [#1978]. Minor undefined behaviour fixed.
-
-diff -r 85f99a613e89 -r 2db0528f34b5 doc/ScintillaHistory.html
---- a/doc/ScintillaHistory.html Sun Oct 15 08:57:00 2017 +1100
-+++ b/doc/ScintillaHistory.html Sun Oct 15 09:05:57 2017 +1100
-@@ -557,6 +557,10 @@
- <a href="http://sourceforge.net/p/scintilla/bugs/1968/">Bug #1968</a>.
- </li>
- <li>
-+ Minor undefined behaviour fixed.
-+ <a href="http://sourceforge.net/p/scintilla/bugs/1978">Bug #1978</a>.
-+ </li>
-+ <li>
- On Cocoa, improve scrolling on macOS 10.12.
- <a href="http://sourceforge.net/p/scintilla/bugs/1885">Bug #1885</a>.
- </li>
-diff -r 85f99a613e89 -r 2db0528f34b5 src/ViewStyle.cxx
---- a/src/ViewStyle.cxx Sun Oct 15 08:57:00 2017 +1100
-+++ b/src/ViewStyle.cxx Sun Oct 15 09:05:57 2017 +1100
-@@ -192,7 +192,7 @@
- }
- maskDrawInText = 0;
- for (int markBit = 0; markBit < 32; markBit++) {
-- const int maskBit = 1 << markBit;
-+ const int maskBit = 1U << markBit;
- switch (markers[markBit].markType) {
- case SC_MARK_EMPTY:
- maskInLine &= ~maskBit;