Sorry - from text above it is very hard to see fault because it needs mono-spaced font to see it! (your editing font is probably the underlying cause of mistake eh?). Need to replace ' ' ' ' with ' " '
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry - from text above it is very hard to see fault because it needs mono-spaced font to see it! (your editing font is probably the underlying cause of mistake eh?). Need to replace ' ' ' ' with ' " '
Aha - comments use monospaced font:
Offending line is:
'"': ws := ws + '''';
Should be:
'"': ws := ws + '"';
yes, thanks, was been fixed.