Clojure doesn't seem to explicitly escape non-printable characters in String literals when you try to print them.
You could always do it yourself with something like:
(require 'clojure.string)
(defn escape-nonprintable [s]
(clojure.string/join
(map (fn [c] (if (Character/isISOControl c)
(str "\\" (format "%03o" (int c))) c))
s)))> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to
clo...@googlegroups.com> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
>
clojure+u...@googlegroups.com> For more options, visit this group at
>
http://groups.google.com/group/clojure?hl=en