From 3f1838d9feb6b8348a24b6ba4a17c2c40e3541c6 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Wed, 11 Mar 2026 09:23:34 +1100 Subject: Bug [#2501]. Fix regression in SCI_CONVERTEOLS that may not convert whole file. --- src/Document.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/Document.cxx') diff --git a/src/Document.cxx b/src/Document.cxx index 4fb266730..ab4da0179 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -1907,8 +1907,7 @@ std::string Document::TransformLineEnds(const char *s, size_t len, EndOfLine eol void Document::ConvertLineEnds(EndOfLine eolModeSet) { UndoGroup ug(this); - const Sci::Position length = Length(); - for (Sci::Position pos = 0; pos < length; pos++) { + for (Sci::Position pos = 0; pos < LengthNoExcept(); pos++) { const char ch = cb.CharAt(pos); if (ch == '\r') { if (cb.CharAt(pos + 1) == '\n') { -- cgit v1.2.3