git.fiddlerwoaroof.com
Browse code

bug encoding strings

Alexandre Rademaker authored on 02/07/2016 02:16:42
Showing 1 changed files
... ...
@@ -30,7 +30,8 @@
30 30
 
31 31
 (defmethod encode ((string string) stream)
32 32
   "Encode a string."
33
-  (write-string string stream))
33
+  ;; (write-string string stream)
34
+  (format stream "~s" string))
34 35
 
35 36
 (defmethod encode ((list list) stream)
36 37
   "Encode a list."