aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/pprint
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-07-23 10:52:19 -0700
committerTom Faulhaber <git_net@infolace.com>2009-07-23 10:52:19 -0700
commite20e8effe977640592b1f285d6c666492d74df00 (patch)
tree2f62e7f1270c4d1571c00a74aaeb36a407397766 /src/clojure/contrib/pprint
parent6fea921c91d453c750586c960ec92caacf4fa5e6 (diff)
Drop / from the list of chars that's escaped for JSON in pprint JSON dispatch
Diffstat (limited to 'src/clojure/contrib/pprint')
-rw-r--r--src/clojure/contrib/pprint/examples/json.clj1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/clojure/contrib/pprint/examples/json.clj b/src/clojure/contrib/pprint/examples/json.clj
index f62f81a7..3cde1751 100644
--- a/src/clojure/contrib/pprint/examples/json.clj
+++ b/src/clojure/contrib/pprint/examples/json.clj
@@ -72,7 +72,6 @@ This is an example of using a pretty printer dispatch function to generate JSON
;; Handle printable JSON escapes before ASCII
(= cp 34) (print "\\\"")
(= cp 92) (print "\\\\")
- (= cp 47) (print "\\/")
;; Print simple ASCII characters
(< 31 cp 127) (print (.charAt s i))
;; Handle non-printable JSON escapes