Kaydet (Commit) f78578e4 authored tarafından Enrico Tröger's avatar Enrico Tröger

Apply patch from Scintilla ML to fix problems with selections including the…

Apply patch from Scintilla ML to fix problems with selections including the first and second character of a line.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1803 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 4f74783f
2007-08-16 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* scintilla/PositionCache.cxx:
Apply patch from Scintilla ML to fix problems with selections
including the first and second character of a line.
2007-08-15 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/symbols.c, src/symbols.h, src/treeviews.c:
......
......@@ -341,7 +341,7 @@ void LineLayoutCache::Dispose(LineLayout *ll) {
}
void BreakFinder::Insert(int val) {
if (val > nextBreak) {
if (val >= nextBreak) {
for (unsigned int j = 0; j<saeLen; j++) {
if (val == selAndEdge[j]) {
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment