From ca79b65eea2653ecbf62eb0f1d0caf4ff6dea601 Mon Sep 17 00:00:00 2001 From: mitchell Date: Sun, 5 Jan 2020 17:10:23 -0500 Subject: Synchronizing LongTerm3 with default. Ideally this covers anything missed during the backport process. --- doc/SciCoding.html | 4 ++-- doc/ScintillaDoc.html | 8 ++------ doc/ScintillaHistory.html | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) (limited to 'doc') 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.

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 { SCI_GETSELECTIONNEND(int selection) → position
SCI_GETSELECTIONNENDVIRTUALSPACE(int selection) → position
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.

@@ -7122,9 +7122,7 @@ SCI_METHOD PropertyNames()

The types Sci_Position and Sci_PositionU are used for positions and line numbers in the document. -Before release 3.6.0 the types int and unsigned int were used instead and, for 3.6.0, -Sci_Position is defined as int and Sci_PositionU is defined as unsigned int. -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.

@@ -8460,8 +8458,6 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next

Provisional features are displayed in this document with a distinctive background colour.

-

There are currently no provisional messages or values.

-

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 SCI_DISABLE_PROVISIONAL defined.

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. - Feature #1242. + Feature #1242.
  • The Bash lexer implements substyles for multiple sets of keywords and supports SCI_PROPERTYNAMES. -- cgit v1.2.3