aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-09-04 09:45:09 +1000
committerNeil <nyamatongwe@gmail.com>2014-09-04 09:45:09 +1000
commit54de44e76908d33aa613bb928a39403ed01f5074 (patch)
tree61aca848aabcc3efafe60fd73946e09ccb86e09e
parentb42a204c6cea47b0bee61c4015d44f59f4e8dba0 (diff)
downloadscintilla-mirror-54de44e76908d33aa613bb928a39403ed01f5074.tar.gz
Better explanation of SCI_GETNEXTTABSTOP.
-rw-r--r--doc/ScintillaDoc.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index e58c5cc4d..0d1f33bcb 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -82,7 +82,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 24 May 2014 NH</p>
+ <p>Last edited 4 September 2014 NH</p>
<p>There is <a class="jump" href="Design.html">an overview of the internal design of
Scintilla</a>.<br />
@@ -3429,8 +3429,8 @@ struct Sci_TextToFind {
<b id="SCI_GETNEXTTABSTOP">SCI_GETNEXTTABSTOP(int line, int x)</b><br />
<code>SCI_CLEARTABSTOPS</code> clears explicit tabstops on a line. <code>SCI_ADDTABSTOP</code>
adds an explicit tabstop at the specified distance from the left (in pixels), and
- <code>SCI_GETNEXTTABSTOP</code> gets the next explicit tabstop position, or zero if there
- aren't any.
+ <code>SCI_GETNEXTTABSTOP</code> gets the next explicit tabstop position set after the given x position,
+ or zero if there aren't any.
Changing tab stops produces a <a class="message" href="#SC_MOD_CHANGETABSTOPS">SC_MOD_CHANGETABSTOPS</a> notification.
</p>