1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-01 16:13:00 +00:00

Prevent infinite loop for single-word texts (#7327)

This commit is contained in:
yaisog
2023-03-04 14:37:16 +01:00
committed by GitHub
parent 0eb6569674
commit b548b29b2b

View File

@@ -112,7 +112,7 @@ function diffPartsToChars(text1,text2,mode) {
if(mode === "words") {
regexpResult = searchRegexp.exec(text);
lineEnd = searchRegexp.lastIndex;
if(lineEnd === null) {
if(regexpResult === null) {
lineEnd = text.length;
}
lineEnd = --lineEnd;