aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2016-09-20 09:08:20 +1000
committerNeil <nyamatongwe@gmail.com>2016-09-20 09:08:20 +1000
commit64f6d9f07b8472db5e08518ef435067a80ccc8c0 (patch)
tree160c82131aedd5cafc236c128d7866092652b923
parent2b34a818fdb8ebd2d472aac17ccd05a5ab9bef33 (diff)
downloadscintilla-mirror-64f6d9f07b8472db5e08518ef435067a80ccc8c0.tar.gz
Link regex word flag documentation to word characters definition.
-rw-r--r--doc/ScintillaDoc.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 739a38a6f..fbb36098f 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -732,13 +732,15 @@ struct Sci_TextRange {
<tr>
<td><code>SCFIND_WHOLEWORD</code></td>
- <td>A match only occurs if the characters before and after are not word characters.</td>
+ <td>A match only occurs if the characters before and after are not word characters as defined
+ by <a class="message" href="#SCI_SETWORDCHARS"><code>SCI_SETWORDCHARS</code></a>.</td>
</tr>
<tr>
<td><code>SCFIND_WORDSTART</code></td>
- <td>A match only occurs if the character before is not a word character.</td>
+ <td>A match only occurs if the character before is not a word character as defined
+ by <a class="message" href="#SCI_SETWORDCHARS"><code>SCI_SETWORDCHARS</code></a>.</td>
</tr>
<tr>