Smarter string escaping. Fixes #114
[jscl.git] / src / print.lisp
index 7daa143..f5e3f3b 100644 (file)
                          (#\space "space")
                          (otherwise (string form)))))
               ((stringp form) (if *print-escape*
-                                  (concat "\"" (escape-string form) "\"")
+                                  (escape-string form)
                                   form))
               ((functionp form)
                (let ((name (oget form "fname")))