aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-09-07 09:56:40 +1000
committerNeil <nyamatongwe@gmail.com>2013-09-07 09:56:40 +1000
commit284e1936b8f14ca0b85f3deebe4fdb6393ed7357 (patch)
tree12c0d2e477d08047c27d6162658f96ac72ca87bb
parentab5a0fe111fe369879ea93d00646ad81e2ce7aa0 (diff)
downloadscintilla-mirror-284e1936b8f14ca0b85f3deebe4fdb6393ed7357.tar.gz
Mention that prefix keyword sets aren't implemented for SCI_SETIDENTIFIERS.
-rw-r--r--doc/ScintillaDoc.html9
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>