mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-14 05:44:50 +00:00
Prevent infinite loop for single-word texts (#7327)
This commit is contained in:
parent
0eb6569674
commit
b548b29b2b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user