From 1977191de28871579c986e68e35b7302acddbcaa Mon Sep 17 00:00:00 2001 From: dlichteblau Date: Sun, 21 Jan 2007 15:25:27 +0000 Subject: [PATCH] rune fix --- src/parse/sgml-parse.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/parse/sgml-parse.lisp b/src/parse/sgml-parse.lisp index 42a7c66..28fae16 100644 --- a/src/parse/sgml-parse.lisp +++ b/src/parse/sgml-parse.lisp @@ -961,9 +961,9 @@ (sgml::find-element dtd name nil nil))) (defun foofoo (r) - (cond ((integerp r) (map 'rod #'char-code (prin1-to-string r))) - ((symbolp r) (map 'rod #'char-code (princ-to-string r))) - ((stringp r) (map 'rod #'char-code r)) + (cond ((integerp r) (string-rod (prin1-to-string r))) + ((symbolp r) (string-rod (princ-to-string r))) + ((stringp r) (string-rod r)) (t (error "foofoo: Hmm ~S ?!" r)))) -- 2.11.4.GIT