diff options
| author | nyamatongwe <unknown> | 2005-10-14 00:37:28 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2005-10-14 00:37:28 +0000 | 
| commit | 43780cbc9f84872e21ff9785d1ad5b246fae2bdb (patch) | |
| tree | 589a422d4cbde647ae68ce71ee7a7fed1eddb851 | |
| parent | e336f9d17ea3f29180e12d6787dc9a0ea14d14ed (diff) | |
| download | scintilla-mirror-43780cbc9f84872e21ff9785d1ad5b246fae2bdb.tar.gz | |
Added to SCI_GETCURLINE.
| -rw-r--r-- | doc/ScintillaDoc.html | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index b8e602569..7435fccfd 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1109,8 +1109,10 @@ struct TextToFind {      <p><b id="SCI_GETCURLINE">SCI_GETCURLINE(int textLen, char *text)</b><br />       This retrieves the text of the line containing the caret and returns the position within the      line of the caret. Pass in <code>char* text</code> pointing at a buffer large enough to hold -    the text you wish to retrieve and a terminating 0 character. Set <code>textLen</code> to the -    length of the buffer. If the text argument is 0 then the length that should be allocated +    the text you wish to retrieve and a terminating 0 character.  +    Set <code>textLen</code> to the +    length of the buffer which must be at least 1 to hold the terminating 0 character. +    If the text argument is 0 then the length that should be allocated      to store the entire current line is returned.</p>      <p>See also: <code><a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a | 
