duncanamps/xa80

Single quoted strings not stripping correctly

Closed this issue · 3 comments

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.

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.

Was problem with StripQuotes() in uutility module, only doing double quotes.
Fixed in build 27

Closed