index
:
scintilla-mirror
master
sciteco-dev-pre-v2.0.0
sciteco-rel-5-1-3
sciteco-rel-5-3-4
sciteco-rel-5-5-2
sciteco-rel-5-5-4
sciteco-rel-5-5-7
Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.
Robin Haberkorn
about
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
Document.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2012-07-02
Remove functions provided by headers.
nyamatongwe
1
-9
/
+0
2012-07-02
Make IsLowerCase and IsUpperCase not depend on non-portable isascii, take
nyamatongwe
1
-8
/
+0
2012-06-17
Use std::string instead of fixed size strings.
nyamatongwe
1
-12
/
+9
2012-06-16
Redraw margin when changing margin styles.
nyamatongwe
1
-0
/
+2
2012-06-04
Properly position caret after undoing coalesced delete operations. Bug #3523326.
Marko Njezic
1
-4
/
+27
2012-06-04
Validate length of deletion: negative values caused crashes.
nyamatongwe
1
-1
/
+1
2012-05-29
add CharClassifier::GetCharsOfClass
Mook
1
-0
/
+4
2012-05-26
Use standardised and more stringent UTF8Classify for determining validity and
nyamatongwe
1
-58
/
+61
2012-05-26
For case-insensitive UTF-8 searching, use UTF8Classify for finding valid
nyamatongwe
1
-27
/
+23
2012-05-26
Optimize case-sensitive searching by hoisting the first character of search
nyamatongwe
1
-6
/
+9
2012-05-26
Optimize UTF-8 character length calculations by using an array.
nyamatongwe
1
-17
/
+8
2012-04-14
Make FindColumn() return correct position when column falls inside tab width....
Marko Njezic
1
-0
/
+2
2012-04-14
Remove dead code. Feature #3517596.
nyamatongwe
1
-1
/
+0
2012-04-14
Remove isindentchar as it duplicated IsSpaceOrTab. Made IsSpaceOrTab static. ...
nyamatongwe
1
-6
/
+2
2012-04-14
Remove GoodTrailByte as it duplicated IsTrailByte. Simplified IsTrailByte. Fe...
nyamatongwe
1
-7
/
+3
2012-03-27
Protect against modifying annotations with a negative line number or a line
nyamatongwe
1
-7
/
+11
2012-03-25
Replace \0 by found text in regular expressions search
Unknown
1
-2
/
+2
2012-03-21
Ensure segment discovery always makes progress even for invalid UTF-8.
nyamatongwe
1
-1
/
+6
2012-03-03
Fix crash caused by NULL pointer for SCI_MOVESELECTEDLINESDOWN. Bug #3496403.
nyamatongwe
1
-1
/
+1
2011-11-26
Removed unreachable code. Issue described in bug 3440534.
nyamatongwe
1
-1
/
+1
2011-11-16
Bug #3283519. CountCharacters added to count the number of
nyamatongwe
1
-0
/
+14
2011-10-26
Implement ILoader interface so that clients can load documents from
nyamatongwe
1
-1
/
+17
2011-09-23
Optimized MarkerNext so it can be much faster when no marker ever set
nyamatongwe
1
-0
/
+4
2011-08-27
Basing default eol mode on _WIN32 instead of __unix__ as OS X does
nyamatongwe
1
-3
/
+3
2011-07-12
Fix case-insensitive search where folded form shorter. Bug #3362038.
nyamatongwe
1
-4
/
+8
2011-07-12
Fix Shift-JIS lead byte ranges to match Windows.
nyamatongwe
1
-1
/
+2
2011-07-11
Avoid shadowing of fields even for static methods to stop warnings.
nyamatongwe
1
-4
/
+4
2011-07-02
Folding related fixes. Initiated by bug #3323805.
Marko Njezic
1
-91
/
+60
2011-06-25
Add casts to avoid warnings from SDK 64-bit compiler.
nyamatongwe
1
-7
/
+9
2011-06-08
Fix regex search on the last line of search range
Marko Njezic
1
-2
/
+3
2011-05-13
Break measurement of text into reasonable sized segments similar
nyamatongwe
1
-0
/
+49
2011-04-27
Fixes for backwards regex search. Bug #3292659.
nyamatongwe
1
-1
/
+8
2011-04-27
Optimize fold marker highlight. Feature #3282649.
nyamatongwe
1
-8
/
+11
2011-04-16
Better highlight drawing where fold header has no subordinates. Bug #3279730.
nyamatongwe
1
-4
/
+7
2011-04-07
Add highlighting of current folding block. Feature #3147069.
nyamatongwe
1
-0
/
+98
2011-04-07
Update copyright year.
nyamatongwe
1
-1
/
+1
2011-02-28
Avoid shadowed variables as reported by Xcode.
nyamatongwe
1
-2
/
+2
2011-02-10
Fix for backwards case-insensitive search in code page 936. Bug #3176271.
nyamatongwe
1
-1
/
+5
2010-11-20
Bug #3111957. Use __unix__ rather than unix for compatibility with OpenBSD.
nyamatongwe
1
-1
/
+1
2010-11-10
Remove support for Borland C++.
nyamatongwe
1
-8
/
+0
2010-11-08
Fix for bug #3103936. Backwards search with code page 936 does not match at l...
nyamatongwe
1
-1
/
+1
2010-09-25
Bug #3075074 fixed. AddMark and AddMarkSet need to check line arg
nyamatongwe
1
-1
/
+4
2010-09-16
Making methods const when they should be.
nyamatongwe
1
-2
/
+2
2010-09-15
Fix for bug #3065912 Fail to Search up when code.page = 936
nyamatongwe
1
-1
/
+1
2010-09-06
More accurate range for LineState modification notification so doesn't hit th...
nyamatongwe
1
-1
/
+1
2010-08-27
NextPosition treats \r\n as two characters as this allows searching for \n.
nyamatongwe
1
-13
/
+1
2010-08-19
Adding GetLineIndentation to IDocument.
nyamatongwe
1
-4
/
+4
2010-08-07
Fix crash when calling SCI_REPLACETARGETRE without having done a search first.
nyamatongwe
1
-1
/
+4
2010-08-05
Case insensitive search in DBCS and faster processing of DBCS.
nyamatongwe
1
-18
/
+61
2010-08-05
Added code page 1361 Korean Johab to IsDBCSLeadByte.
nyamatongwe
1
-2
/
+7
[next]