aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla_backports/6176_20120f9d1698.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/6176_20120f9d1698.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/6176_20120f9d1698.patch')
-rw-r--r--src/scintilla_backports/6176_20120f9d1698.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/scintilla_backports/6176_20120f9d1698.patch b/src/scintilla_backports/6176_20120f9d1698.patch
deleted file mode 100644
index 2622c3a0..00000000
--- a/src/scintilla_backports/6176_20120f9d1698.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-# HG changeset patch
-# User Neil <nyamatongwe@gmail.com>
-# Date 1491606364 -36000
-# Node ID 20120f9d1698f2a5b36ca9fa2e01ed08fa9776fd
-# Parent d742ec177a7eab50fa56cf453d32ed211f767365
-Use reference for efficiency.
-
-diff -r d742ec177a7e -r 20120f9d1698 src/Editor.cxx
---- a/src/Editor.cxx Fri Apr 07 19:44:59 2017 +1000
-+++ b/src/Editor.cxx Sat Apr 08 09:06:04 2017 +1000
-@@ -4301,7 +4301,7 @@
- const SelectionPosition pos = SPositionFromLocation(pt, false, true);
- const Point ptPos = LocationFromPosition(pos);
- for (size_t r=0; r<sel.Count(); r++) {
-- const SelectionRange range = sel.Range(r);
-+ const SelectionRange &range = sel.Range(r);
- if (range.Contains(pos)) {
- bool hit = true;
- if (pos == range.Start()) {