diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 6c2f4b6a7103effc537ce7739619d4ce76fccbe6..18547bb87942e90439a26a4277e30d0b7a4233d5 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -1974,6 +1974,8 @@ void BaseTextEditorPrivate::highlightSearchResults(const QTextBlock &block, if (idx < 0) break; l = m_searchExpr.matchedLength(); + if (l == 0) + break; if ((m_findFlags & Find::IFindSupport::FindWholeWords) && ((idx && text.at(idx-1).isLetterOrNumber()) || (idx + l < text.length() && text.at(idx + l).isLetterOrNumber())))