diff options
author | 2018-06-12 11:29:45 -0400 | |
---|---|---|
committer | 2018-06-12 11:29:45 -0400 | |
commit | b3a2fbb09dc1922a96e9f12c6f7887e4f2b57528 (patch) | |
tree | 2efa8b8e903914404459ade0f525e4cd25be78f4 /src/scintilla.patch | |
parent | 9f4d23892343ccf9feba46b7d7d45a0629497e7c (diff) | |
download | textadept-b3a2fbb09dc1922a96e9f12c6f7887e4f2b57528.tar.gz textadept-b3a2fbb09dc1922a96e9f12c6f7887e4f2b57528.zip |
Fixed child lexers that embed themselves into parents and fixed proxy lexers.
Also removed temporary Scintilla patch that has been applied.
Diffstat (limited to 'src/scintilla.patch')
-rw-r--r-- | src/scintilla.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/scintilla.patch b/src/scintilla.patch index 5d38187e..c25bbd92 100644 --- a/src/scintilla.patch +++ b/src/scintilla.patch @@ -36,15 +36,3 @@ Revert caret block placement change introduced by Scintilla 3.7.3. const int offset = static_cast<int>(posCaret.Position() - posLineStart); const XYPOSITION spaceWidth = vsDraw.styles[ll->EndLineStyle()].spaceWidth; const XYPOSITION virtualOffset = posCaret.VirtualSpace() * spaceWidth; -diff -r f9eb9df49b8e src/Document.cxx ---- a/src/Document.cxx Sun May 06 23:46:01 2018 -0400 -+++ b/src/Document.cxx Fri May 11 11:51:01 2018 -0400 -@@ -2951,7 +2951,7 @@ - #endif - ws[outLen] = 0; - std::wregex regexp; --#if defined(__APPLE__) -+#if defined(__APPLE__) && !defined(GTK) - // Using a UTF-8 locale doesn't change to Unicode over a byte buffer so '.' - // is one byte not one character. - // However, on OS X this makes wregex act as Unicode |