diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-09-07 09:56:40 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-09-07 09:56:40 +1000 |
| commit | 39a095c2afe48d5787ef2117df8966f52e4c07c2 (patch) | |
| tree | c6e598df7b2e41842a2e9df0c36f10691d281342 | |
| parent | d83d78c7fa365b9ab2eed299a4c2654ad99e1665 (diff) | |
| download | scintilla-mirror-39a095c2afe48d5787ef2117df8966f52e4c07c2.tar.gz | |
Mention that prefix keyword sets aren't implemented for SCI_SETIDENTIFIERS.
| -rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 98f9bb844..137338146 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -82,7 +82,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 5 September 2013 NH</p> + <p>Last edited 7 September 2013 NH</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -6051,8 +6051,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <code>SCI_SETPROPERTY</code></a> will be performed before any numeric interpretation.</p> <p><b id="SCI_SETKEYWORDS">SCI_SETKEYWORDS(int keyWordSet, const char *keyWordList)</b><br /> - You can set up to 9 lists of keywords for use by the current lexer. This was increased from 6 - at revision 1.50. <code>keyWordSet</code> can be 0 to 8 (actually 0 to <code>KEYWORDSET_MAX</code>) + You can set up to 9 lists of keywords for use by the current lexer. + <code>keyWordSet</code> can be 0 to 8 (actually 0 to <code>KEYWORDSET_MAX</code>) and selects which keyword list to replace. <code>keyWordList</code> is a list of keywords separated by spaces, tabs, <code>"\n"</code> or <code>"\r"</code> or any combination of these. It is expected that the keywords will be composed of standard ASCII printing characters, @@ -6114,7 +6114,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ For a secondary style, return the primary style, else return the argument.</p> <p><b id="SCI_SETIDENTIFIERS">SCI_SETIDENTIFIERS(int style, const char *identifiers)</b><br /> - Similar to <code>SCI_SETKEYWORDS</code> but for substyles.</p> + Similar to <code>SCI_SETKEYWORDS</code> but for substyles. + The prefix feature available with <code>SCI_SETKEYWORDS</code> is not implemented for <code>SCI_SETIDENTIFIERS</code>.</p> </div> <h2 id="LexerObjects">Lexer Objects</h2> |
