Remove stray single quotes in symbol name strings

This commit is contained in:
Max Brunsfeld 2019-01-12 21:42:31 -08:00
parent 6f242fda0c
commit 545e840a08

View file

@ -934,9 +934,9 @@ impl Generator {
match c {
'\"' => result += "\\\"",
'\\' => result += "\\\\",
'\t' => result += "'\\t'",
'\n' => result += "'\\n'",
'\r' => result += "'\\r'",
'\t' => result += "\\t",
'\n' => result += "\\n",
'\r' => result += "\\r",
_ => result.push(c),
}
}