1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Improve pretty-printing of tree-il objects.

* module/language/tree-il.scm (print-tree-il): Print the AST with ~S
  instead of ~A.
This commit is contained in:
Ludovic Courtès 2010-10-08 15:24:15 +02:00
parent 75365375dd
commit 7cd6d77c64

View file

@ -62,7 +62,7 @@
pre-order!))
(define (print-tree-il exp port)
(format port "#<tree-il ~a>" (unparse-tree-il exp)))
(format port "#<tree-il ~S>" (unparse-tree-il exp)))
(define-syntax borrow-core-vtables
(lambda (x)