diff options
| author | Zufu Liu <unknown> | 2022-07-17 14:09:52 +1000 | 
|---|---|---|
| committer | Zufu Liu <unknown> | 2022-07-17 14:09:52 +1000 | 
| commit | f6a9859562ddeb04e882e4a3d15adbf64345452a (patch) | |
| tree | f814dc8f40ea08c5d01d110ffb69a491806eea36 /doc/ScintillaDoc.html | |
| parent | 4e0683e5531aa99958fc742476b6150ec2595c72 (diff) | |
| download | scintilla-mirror-f6a9859562ddeb04e882e4a3d15adbf64345452a.tar.gz | |
Feature [feature-requests:#1441] Line state optimized to avoid excess allocations
by always allocating for every line.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 4 | 
1 files changed, 3 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>  | 
