mirror of https://gitlab.com/basile.b/dexed.git
fix #467 - Todo list broken when an item ends with a single quote
This commit is contained in:
parent
e07c701c62
commit
13cfe8cc7d
|
@ -233,8 +233,7 @@ string patchPascalString(size_t lenLimit = 0)(string value)
|
||||||
app ~= value[i];
|
app ~= value[i];
|
||||||
else
|
else
|
||||||
app ~= "'#39";
|
app ~= "'#39";
|
||||||
if (i != len-1)
|
app ~= "'";
|
||||||
app ~= "'";
|
|
||||||
skip = false;
|
skip = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue