diff options
author | mitchell <unknown> | 2018-05-05 11:52:27 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-05-05 11:52:27 -0400 |
commit | 93462d87c3c8f398d5900be84349f29cb088d849 (patch) | |
tree | 631eb19ad8d818e262f4988139d96709b4ee8cd5 /src/Document.cxx | |
parent | 156c3f0e53ea2a7f932f6079cb122c2cf66fb3df (diff) | |
download | scintilla-mirror-93462d87c3c8f398d5900be84349f29cb088d849.tar.gz |
Backport: 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.
Backport of changeset 6643:ebbb4e5aaf93.
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 6018ca96c..16e5bec9e 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -120,8 +120,6 @@ Document::Document(int options) : matchesValid = false; - UTF8BytesOfLeadInitialise(); - perLineData[ldMarkers].reset(new LineMarkers()); perLineData[ldLevels].reset(new LineLevels()); perLineData[ldState].reset(new LineState()); |