diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/SciCoding.html | 4 | ||||
| -rw-r--r-- | doc/ScintillaDoc.html | 8 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 2 |
3 files changed, 5 insertions, 9 deletions
diff --git a/doc/SciCoding.html b/doc/SciCoding.html index c5debf51a..b3724abec 100644 --- a/doc/SciCoding.html +++ b/doc/SciCoding.html @@ -124,8 +124,8 @@ compilers on diverse platforms with high performance and low resource usage. Scintilla has stricter portability requirements to SciTE as it may be ported to low capability platforms. - Scintilla code must build with C++03 which can be checked with "g++ --std=gnu++03". - SciTE can use C++11 features that are widely available from g++ 4.6, MSVC 2012 and clang 3.4 compilers. + Scintilla code must build with C++11 which can be checked with "g++ --std=c++11". + SciTE can use C++11 features that are widely available from g++ 4.8, MSVC 2015 and clang 3.4 compilers. </p> <p> To achieve portability, only a subset of C++ features are used. diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index ef9e3e81b..46262e0a5 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1808,7 +1808,7 @@ struct Sci_TextToFind { <b id="SCI_GETSELECTIONNEND">SCI_GETSELECTIONNEND(int selection) → position</b><br /> <b id="SCI_GETSELECTIONNENDVIRTUALSPACE">SCI_GETSELECTIONNENDVIRTUALSPACE(int selection) → position</b><br /> Set or query the start and end position of each already existing selection. - Query the virtual space at start and end of each selection. + Query the virtual space at start and end of each selection. Mostly of use to query each range for its text. The selection parameter is zero-based. </p> <p> @@ -7122,9 +7122,7 @@ SCI_METHOD<span class="S0"> </span>PropertyNames<span class="S10">()</span> <p> The types <code>Sci_Position</code> and <code>Sci_PositionU</code> are used for positions and line numbers in the document. -Before release 3.6.0 the types <code>int</code> and <code>unsigned int</code> were used instead and, for 3.6.0, -<code>Sci_Position</code> is defined as <code>int</code> and <code>Sci_PositionU</code> is defined as <code>unsigned int</code>. -In a future release, 64-bit builds will define these as 64-bit types to allow documents larger than 2 GB. +With release 3.8.0, 64-bit builds define these as 64-bit types to allow future implementation of documents larger than 2 GB. </p> <p> @@ -8460,8 +8458,6 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <p>Provisional features are displayed in this document with <span class="provisional">a distinctive background colour</span>.</p> - <p>There are currently no provisional messages or values.</p> - <p>Some developers may want to only use features that are stable and have graduated from provisional status. To avoid using provisional messages compile with the symbol <code>SCI_DISABLE_PROVISIONAL</code> defined.</p> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 9da57e3cb..bb680872c 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -942,7 +942,7 @@ Added "nim" lexer (SCLEX_NIM) for the Nim language which was previously called Nimrod. For compatibility, the old "nimrod" lexer is still present but is deprecated and will be removed at the next major version. - <a href="https://sourceforge.net/p/scintilla/feature-requests/1242/">Feature #1242.</a> + <a href="https://sourceforge.net/p/scintilla/feature-requests/1242/">Feature #1242</a>. </li> <li> The Bash lexer implements substyles for multiple sets of keywords and supports SCI_PROPERTYNAMES. |
