Single quoted strings not stripping correctly
Closed this issue · 3 comments
duncanamps commented
For example:
msg: DB 'Hello there',13,10,0
The example above is encoding the 0x27 single quote characters when it should be stripping them. Fix the problem, and update the test suite to ensure it has some single quoted items in it.
duncanamps commented
Double quote is working OK:
msg: DB "Hello there",13,10,0
All works OK so it's just single quote that has the issue.
duncanamps commented
Was problem with StripQuotes() in uutility module, only doing double quotes.
Fixed in build 27
duncanamps commented
Closed