aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/pprint/dispatch.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/contrib/pprint/dispatch.clj')
-rw-r--r--src/clojure/contrib/pprint/dispatch.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/pprint/dispatch.clj b/src/clojure/contrib/pprint/dispatch.clj
index 89ea6b5c..a473dbc3 100644
--- a/src/clojure/contrib/pprint/dispatch.clj
+++ b/src/clojure/contrib/pprint/dispatch.clj
@@ -405,7 +405,7 @@
(if (= mode :writing)
(dosync
(write-white-space this)
- (.col-write this s)
+ (.col_write this s)
(setf :trailing-white-space white-space))
(add-to-buffer this (make-buffer-blob s white-space))))
@@ -414,7 +414,7 @@
(if (= (getf :mode) :writing)
(do
(write-white-space this)
- (.col-write this x))
+ (.col_write this x))
(if (= c (int \newline))
(write-initial-lines this "\n")
(add-to-buffer this (make-buffer-blob (str (char c)) nil))))))))))