You are not logged in.
Pages: 1
Hi,
The newly revised QuotedStr(const S: RawUTF8; Quote: AnsiChar; var result: RawUTF8);
has bug:
PWord(P)^ := ord('"')+ord('"')shl 8;
It should be:
PWord(P)^ := ord(Quote)+ord(Quote)shl 8;
Offline
Oups...
Should indeed be fixed by https://synopse.info/fossil/info/af3cd59e4b
The new associated tests are https://synopse.info/fossil/info/a28687bf5a
Offline
Pages: 1