diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 4 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 1529fc13c..b1d2b5e09 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2900,7 +2900,9 @@ struct Sci_TextToFindFull { </p> <p><b id="SCI_GETMAXLINESTATE">SCI_GETMAXLINESTATE → int</b><br /> - This returns the last line that has any line state.</p> + This returns the last line that has any line state. + This has been made less useful by an optimization that always allocates for all lines if any line's state was set. + It can still distinguish cases where line state was never set for any lines.</p> <h2 id="StyleDefinition">Style definition</h2> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 8d7952b2d..1ac7da9b0 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -574,6 +574,20 @@ </table> <h2>Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla525.zip">Release 5.2.5</a> + </h3> + <ul> + <li> + Released 10 July 2022. + </li> + <li> + Line state optimized to avoid excess allocations by always allocating for every line. + This makes SCI_GETMAXLINESTATE less useful although it can still distinguish cases + where line state was never set for any lines. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1441/">Feature #1441</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla524.zip">Release 5.2.4</a> </h3> <ul> |
