pprint-indent(clojure.contrib.pprint)

Create an indent at this point in the pretty printing stream. This defines how following lines are indented. relative-to can be either :block or :current depending whether the indent should be computed relative to the start of the logical block or the current column position. n is an offset. Output is sent to *out* which must be a pretty printing writer.

; clojure/contrib/pprint/pprint_base.clj:280
(defn pprint-indent 
  [relative-to n] 
  (check-enumerated-arg relative-to #{:block :current})
  (.indent #^PrettyWriter *out* relative-to n))

Copyright (c) Rich Hickey. All rights reserved.

The use and distribution terms for this software are covered by the Eclipse Public License 1.0, 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.