Fix translation newlines

Escape table was incorrect
This commit is contained in:
Scott Shawcroft 2018-08-10 16:17:03 -07:00 committed by GitHub
parent bbc034cd3d
commit 4513bd6ea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ C_ESCAPES = {
"\a": "\\a",
"\b": "\\b",
"\f": "\\f",
"\n": "\\r",
"\n": "\\n",
"\r": "\\r",
"\t": "\\t",
"\v": "\\v",