diff options
| author | nyamatongwe <devnull@localhost> | 2008-06-22 11:41:57 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2008-06-22 11:41:57 +0000 | 
| commit | 91e3a4df19781acf31ea4bd429e44364b2e17e1b (patch) | |
| tree | 3111176d722f172937d5030aba265962f6c7ff1c | |
| parent | 13b6b942ecd2514d81eb06affc0326fb74ac78a1 (diff) | |
| download | scintilla-mirror-91e3a4df19781acf31ea4bd429e44364b2e17e1b.tar.gz | |
Updated number of styles since lexers can use 8 bits now.
| -rw-r--r-- | doc/ScintillaDoc.html | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 9bc173fec..1f3e43a3d 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1880,8 +1880,8 @@ struct TextToFind {      <h2 id="StyleDefinition">Style definition</h2>      <p>While the style setting messages mentioned above change the style numbers associated with -    text, these messages define how those style numbers are interpreted visually. There are 128 -    lexer styles that can be set, numbered 0 to <code>STYLEMAX</code> (127). Unless you use <a +    text, these messages define how those style numbers are interpreted visually. There are 256 +    lexer styles that can be set, numbered 0 to <code>STYLE_MAX</code> (255). Unless you use <a      class="message" href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a> to change the number      of style bits, styles 0 to 31 are used to set the text attributes. There are also some      predefined numbered styles starting at 32, The following <code>STYLE_</code>* constants are @@ -1977,7 +1977,7 @@ struct TextToFind {          <tr>            <th align="left"><code>STYLE_MAX</code></th> -          <td>127</td> +          <td>255</td>            <td>This is not a style but is the number of the maximum style that can be set. Styles            between <code>STYLE_LASTPREDEFINED</code> and <code>STYLE_MAX</code> would be appropriate | 
