From db31b727ca0f93ae7eb81fc7041eeddfd61e4fec Mon Sep 17 00:00:00 2001 From: dlichteblau Date: Sat, 16 Jun 2007 10:02:43 +0000 Subject: [PATCH] DTC patch-rune o make-string-sink/utf8, make-character-stream-sink/utf8: these functions are not needed when compiling with the :rune-is-character feature. --- xml/unparse.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xml/unparse.lisp b/xml/unparse.lisp index dbc47fd..e522f8b 100644 --- a/xml/unparse.lisp +++ b/xml/unparse.lisp @@ -110,10 +110,10 @@ #+rune-is-character (define-maker make-character-stream-sink make-character-stream-ystream stream) - ;; #-rune-is-character + #-rune-is-character (define-maker make-string-sink/utf8 make-string-ystream/utf8) - ;; #-rune-is-character + #-rune-is-character (define-maker make-character-stream-sink/utf8 make-character-stream-ystream/utf8 stream))