diff options
author | Aaron Bedra and Stuart Halloway <pair@clojure.com> | 2010-07-23 11:23:34 -0400 |
---|---|---|
committer | Aaron Bedra and Stuart Halloway <pair@clojure.com> | 2010-07-23 11:23:34 -0400 |
commit | 4cce354d53502c1047990e96c0b424c41a4e0b67 (patch) | |
tree | 53cada29bea03dac8c25cbd12c8168e411001d61 | |
parent | df1b195197e8fe0c64a14335a5ae9854e75feff8 (diff) |
pprint is deprecated (promoted to clojure.pprint)
-rw-r--r-- | src/main/clojure/clojure/contrib/pprint.clj | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/clojure/clojure/contrib/pprint.clj b/src/main/clojure/clojure/contrib/pprint.clj index 2289e920..f661bac4 100644 --- a/src/main/clojure/clojure/contrib/pprint.clj +++ b/src/main/clojure/clojure/contrib/pprint.clj @@ -9,11 +9,15 @@ ;; which can be found in the file epl-v10.html at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be bound by ;; the terms of this license. -;; You must not remove this notice, or any other, from this software. +;; You must not remove this notice, or any other, from this +;; software. + +;; DEPRECATED in 1.2. Promoted to clojure.pprint (ns ^{:author "Tom Faulhaber", - :doc "This module comprises two elements: + :deprecated "1.2" + :doc "This module comprises two elements: 1) A pretty printer for Clojure data structures, implemented in the function \"pprint\" 2) A Common Lisp compatible format function, implemented as |