diff options
author | Rich Hickey <richhickey@gmail.com> | 2010-06-23 20:07:42 -0400 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2010-06-23 20:07:42 -0400 |
commit | bb711051c1c5aaa8d034fc10ec7eb41d04e797ad (patch) | |
tree | 4fae4174315d4dad4403ea56820356bf0e00f81b /src/main | |
parent | b71e3d733b8c590eb3b0b9e8d555de4f1311a9ad (diff) |
fixes for equiv compat
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/clojure/clojure/contrib/pprint/column_writer.clj | 2 | ||||
-rw-r--r-- | src/main/clojure/clojure/contrib/pprint/pretty_writer.clj | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/main/clojure/clojure/contrib/pprint/column_writer.clj b/src/main/clojure/clojure/contrib/pprint/column_writer.clj index 65b94904..63718e29 100644 --- a/src/main/clojure/clojure/contrib/pprint/column_writer.clj +++ b/src/main/clojure/clojure/contrib/pprint/column_writer.clj @@ -75,4 +75,6 @@ (.write #^Writer (get-field this :base) s)) Integer + (write-char this x) + Long (write-char this x)))))))) diff --git a/src/main/clojure/clojure/contrib/pprint/pretty_writer.clj b/src/main/clojure/clojure/contrib/pprint/pretty_writer.clj index ba9c78de..91a1bcca 100644 --- a/src/main/clojure/clojure/contrib/pprint/pretty_writer.clj +++ b/src/main/clojure/clojure/contrib/pprint/pretty_writer.clj @@ -402,6 +402,8 @@ (add-to-buffer this (make-buffer-blob s white-space oldpos newpos)))))) Integer + (write-char this x) + Long (write-char this x)))) (flush [] |