aboutsummaryrefslogtreecommitdiffstats
path: root/pp.scm
blob: 1dbada0c0d8fbf6250b371654e278122b4a97396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;"pp.scm" Pretty-print

(require 'generic-write)

; (pretty-print obj port) pretty prints 'obj' on 'port'.  The current
; output port is used if 'port' is not specified.

(define (pp:pretty-print obj . opt)
  (let ((port (if (pair? opt) (car opt) (current-output-port))))
    (generic-write obj #f 79 (lambda (s) (display s port) #t))))

(define pretty-print pp:pretty-print)