richmemo: unescaping \, { and } chars when loading

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7309 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz
2020-01-21 01:36:13 +00:00
parent 123cc9e59f
commit faec1f7501

View File

@ -357,6 +357,8 @@ begin
AddText( langproc(bt) );
end;
end else if (length(txt)=2) and (txt[1]='\') and (txt[2] in ['\','{','}']) then begin
AddText(txt[2]);
end else begin
AddText(txt);
end;