fix #467 - Todo list broken when an item ends with a single quote

This commit is contained in:
Basile Burg 2019-05-09 01:42:09 +02:00
parent e07c701c62
commit 13cfe8cc7d
1 changed files with 1 additions and 2 deletions

View File

@ -233,8 +233,7 @@ string patchPascalString(size_t lenLimit = 0)(string value)
app ~= value[i];
else
app ~= "'#39";
if (i != len-1)
app ~= "'";
app ~= "'";
skip = false;
break;
}