aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/Document.cxx2
-rw-r--r--src/Document.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index 88b876ebd..319cc37e1 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -167,8 +167,6 @@ Document::Document(DocumentOption options) :
tabIndents = true;
backspaceUnindents = false;
- matchesValid = false;
-
perLineData[ldMarkers] = std::make_unique<LineMarkers>();
perLineData[ldLevels] = std::make_unique<LineLevels>();
perLineData[ldState] = std::make_unique<LineState>();
diff --git a/src/Document.h b/src/Document.h
index fa1c3fe42..01c608d0e 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -301,7 +301,6 @@ private:
LineAnnotation *Annotations() const noexcept;
LineAnnotation *EOLAnnotations() const noexcept;
- bool matchesValid;
std::unique_ptr<RegexSearchBase> regex;
std::unique_ptr<LexInterface> pli;