about summary refs log tree commit diff
path: root/dump
diff options
context:
space:
mode:
Diffstat (limited to 'dump')
-rw-r--r--dump/strings.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/dump/strings.scm b/dump/strings.scm
index c67d7fc..849b3c3 100644
--- a/dump/strings.scm
+++ b/dump/strings.scm
@@ -72,7 +72,13 @@ association list mapping substrings to their replacements."
    '(("\r" . "\\r")
      ("\n" . "\\n")
      ("\"" . "'")
-     ("\v" . ""))))
+     ("\v" . "")
+     ("\xad" . "")
+     ("\x28" . "")
+     ("\x29" . "")
+     ("\xa0" . " ")
+     ("\x02" . "")
+     ("\x01" . ""))))
 
 (define (snake->lower-camel str)
   (let ((char-list (string->list str)))