aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-03-28 23:09:49 +0000
committernyamatongwe <devnull@localhost>2005-03-28 23:09:49 +0000
commit61720e6df5e5a263ce47f3213287c0ac184e3db2 (patch)
tree6d7bd9cf309c96e87df1fceef0d350ceb8a90565 /doc/ScintillaDoc.html
parentbc1f05e523b4ec0c6f087c550312e7150ab46b35 (diff)
downloadscintilla-mirror-61720e6df5e5a263ce47f3213287c0ac184e3db2.tar.gz
Corrected SCIINSERTTEXT which does not move the caret if it is at the
location of the insertion.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index f87743f79..8f8c87a73 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -426,8 +426,8 @@
<p><b id="SCI_INSERTTEXT">SCI_INSERTTEXT(int pos, const char *text)</b><br />
This inserts the zero terminated <code>text</code> string at position <code>pos</code> or at
- the current position if <code>pos</code> is -1. The current position is set at the end of the
- inserted text, but it is not scrolled into view.</p>
+ the current position if <code>pos</code> is -1. If the current position is after the insertion point
+ then it is moved along with its surrounding text but no scrolling is performed.</p>
<p><b id="SCI_CLEARALL">SCI_CLEARALL</b><br />
Unless the document is read-only, this deletes all the text.</p>