diff options
author | Zufu Liu <unknown> | 2018-03-22 15:02:38 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2018-03-22 15:02:38 +1100 |
commit | ff707f0fe276677a4d89633ae4964e8b94712ca3 (patch) | |
tree | 103d8741341108a8dc04ef59923e19da6f4a64e4 /src/Document.cxx | |
parent | 9e4cdff7752304fff978ab7f606b64ea85310baf (diff) | |
download | scintilla-mirror-ff707f0fe276677a4d89633ae4964e8b94712ca3.tar.gz |
Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead.
Friendlier treatment of invalid UTF-8.
Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 412798def..48913a16c 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -116,8 +116,6 @@ Document::Document(int options) : matchesValid = false; - UTF8BytesOfLeadInitialise(); - perLineData[ldMarkers] = std::make_unique<LineMarkers>(); perLineData[ldLevels] = std::make_unique<LineLevels>(); perLineData[ldState] = std::make_unique<LineState>(); |