klauspost/asmfmt

asmfmt incorrectly alters quoted strings

hughdavenport opened this issue · 0 comments

With the following example, I would expect no change after running asmfmt:

db ","
db ";"
db "http://example.com"
db ','
db ';'

Currently I get the following output, with spaces added erroneously:

db ", "
db "; "
db "http: // example.com"
db ', '
db '; '

I'm keen to make a PR for this.