Use SXML->LOW-LEVEL-SXML provided by SURFLETS/SXML instead of using PRE-POST-ORDER directly.

This commit is contained in:
interp 2003-07-11 11:34:38 +00:00
parent e71a3581af
commit 7a7fd39f0c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@
;; display-low-level-sxml. In contains only characters, strings, and
;; thunks.
(define (surflet-sxml->low-level-sxml sxml-tree)
(pre-post-order sxml-tree surflet-sxml-rules))
(sxml->low-level-sxml sxml-tree surflet-sxml-rules))