Use sxml->low-level-sxml instead of pre-post-order in sxml->string to reduce connection points.

This commit is contained in:
interp 2004-07-28 20:59:55 +00:00
parent bc9e540be7
commit 7cb5d680d4
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
(call-with-string-output-port
(lambda (port)
(display-low-level-sxml
(pre-post-order sxml-tree rules)
(sxml->low-level-sxml sxml-tree rules)
port))))
(define (sxml->string/internal sxml-tree rules)