SF.net SVN: geany: [1803] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Thu Aug 16 13:53:07 UTC 2007
Revision: 1803
http://geany.svn.sourceforge.net/geany/?rev=1803&view=rev
Author: eht16
Date: 2007-08-16 06:53:06 -0700 (Thu, 16 Aug 2007)
Log Message:
-----------
Apply patch from Scintilla ML to fix problems with selections including the first and second character of a line.
Modified Paths:
--------------
trunk/ChangeLog
trunk/scintilla/PositionCache.cxx
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-08-15 17:58:58 UTC (rev 1802)
+++ trunk/ChangeLog 2007-08-16 13:53:06 UTC (rev 1803)
@@ -1,3 +1,10 @@
+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:
Modified: trunk/scintilla/PositionCache.cxx
===================================================================
--- trunk/scintilla/PositionCache.cxx 2007-08-15 17:58:58 UTC (rev 1802)
+++ trunk/scintilla/PositionCache.cxx 2007-08-16 13:53:06 UTC (rev 1803)
@@ -341,7 +341,7 @@
}
void BreakFinder::Insert(int val) {
- if (val > nextBreak) {
+ if (val >= nextBreak) {
for (unsigned int j = 0; j<saeLen; j++) {
if (val == selAndEdge[j]) {
return;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list