diff options
author | mitchell <unknown> | 2018-03-15 08:57:58 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-03-15 08:57:58 -0400 |
commit | 66dcd50fcdc62cadecdac2860e82f9aaaa7a9976 (patch) | |
tree | b4edab74cb5606bfe522a0d4712a32534f0524f9 | |
parent | 66c694bfd724b3bade0a06a30246ac40426672c1 (diff) | |
download | scintilla-mirror-66dcd50fcdc62cadecdac2860e82f9aaaa7a9976.tar.gz |
Added history for already backported changeset 6385:d04b3417f375.
Also adjusted newer lexer bugfix positioning.
-rw-r--r-- | doc/ScintillaHistory.html | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 6598f622c..351444519 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -557,23 +557,13 @@ <a href="http://sourceforge.net/p/scintilla/bugs/1955/">Bug #1955</a>. </li> <li> - The Matlab lexer treats 'end' as a number rather than a keyword when used as a index. - This also stops incorrect folding. - <a href="http://sourceforge.net/p/scintilla/bugs/1951/">Bug #1951</a>. - </li> - <li> - The Matlab folder implements "fold", "fold.comment", and "fold.compact" properties. - <a href="http://sourceforge.net/p/scintilla/bugs/1965/">Bug #1965</a>. - </li> - <li> - The Rust lexer recognizes 'usize' numeric literal suffixes. - <a href="http://sourceforge.net/p/scintilla/bugs/1919/">Bug #1919</a>. - </li> - <li> The ILoader interface is defined in its own header ILoader.h as it is not related to lexing so doesn't belong in ILexer.h. </li> <li> + The Baan lexer checks that matches to 3rd set of keywords are function calls and leaves as identifiers if not. + </li> + <li> The C++ lexer improved preprocessor conformance.<br /> Default value of 0 for undefined preprocessor symbols.<br /> #define A is treated as #define A 1.<br /> @@ -585,6 +575,19 @@ <a href="http://sourceforge.net/p/scintilla/bugs/1968/">Bug #1968</a>. </li> <li> + The Matlab lexer treats 'end' as a number rather than a keyword when used as a index. + This also stops incorrect folding. + <a href="http://sourceforge.net/p/scintilla/bugs/1951/">Bug #1951</a>. + </li> + <li> + The Matlab folder implements "fold", "fold.comment", and "fold.compact" properties. + <a href="http://sourceforge.net/p/scintilla/bugs/1965/">Bug #1965</a>. + </li> + <li> + The Rust lexer recognizes 'usize' numeric literal suffixes. + <a href="http://sourceforge.net/p/scintilla/bugs/1919/">Bug #1919</a>. + </li> + <li> Ensure redraw when application changes overtype mode so caret change visible even when not blinking. Notify application with SC_UPDATE_SELECTION when overtype changed - previously sent SC_UPDATE_CONTENT. |