From ec391b6bfe8d87f4fb1bbb2a4e6033eaad9f4672 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Mon, 12 Mar 2018 18:20:24 -0400 Subject: 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. --- src/scintilla_backports/6388_96506cab38bd.patch | 33 ------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/scintilla_backports/6388_96506cab38bd.patch (limited to 'src/scintilla_backports/6388_96506cab38bd.patch') diff --git a/src/scintilla_backports/6388_96506cab38bd.patch b/src/scintilla_backports/6388_96506cab38bd.patch deleted file mode 100644 index 5ff68a60..00000000 --- a/src/scintilla_backports/6388_96506cab38bd.patch +++ /dev/null @@ -1,33 +0,0 @@ -# HG changeset patch -# User Neil Hodgson -# Date 1505266064 -36000 -# Node ID 96506cab38bdbd86feac8a0aa671854091b7610b -# Parent d62863ae40a38b08b7b1e3bc13a874b9e8f1c6d2 -Bug [#1971]. Fix line selection by clicking in the margin when scrolled. - -diff -r d62863ae40a3 -r 96506cab38bd doc/ScintillaHistory.html ---- a/doc/ScintillaHistory.html Mon Sep 11 09:05:35 2017 +1000 -+++ b/doc/ScintillaHistory.html Wed Sep 13 11:27:44 2017 +1000 -@@ -554,6 +554,10 @@ - The SQL lexer uses sql.backslash.escapes for double quoted strings. - Bug #1968. - -+
  • -+ On Cocoa, fix line selection by clicking in the margin when scrolled. -+ Bug #1971. -+
  • - -

    - Release 4.0.0 -diff -r d62863ae40a3 -r 96506cab38bd src/Editor.cxx ---- a/src/Editor.cxx Mon Sep 11 09:05:35 2017 +1000 -+++ b/src/Editor.cxx Wed Sep 13 11:27:44 2017 +1000 -@@ -4320,6 +4320,8 @@ - PRectangle rcSelMargin = GetClientRectangle(); - rcSelMargin.right = static_cast(vs.textStart - vs.leftMarginWidth); - rcSelMargin.left = static_cast(vs.textStart - vs.fixedColumnWidth); -+ const Point ptOrigin = GetVisibleOriginInMain(); -+ rcSelMargin.Move(0, -ptOrigin.y); - return rcSelMargin.ContainsWholePixel(pt); - } else { - return false; -- cgit v1.2.3