X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=strings.lisp;h=7e9be34ce521f95c1a6c335a120b64dc10f6f7ef;hb=76085dbb3fc5cb7e40deb1e183c858c19d20b21f;hp=975f1e2dcaad34dd1ff7b98d12ab1975a15cbdd8;hpb=4f21397f1d96da80fbac6f587cb384e56208b497;p=kmrcl.git diff --git a/strings.lisp b/strings.lisp index 975f1e2..7e9be34 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.14 2003/04/29 00:49:09 kevin Exp $ +;;;; $Id: strings.lisp,v 1.16 2003/04/30 02:16:21 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -191,7 +191,7 @@ list of characters and replacement strings." (defun escape-xml-string (string) "Escape invalid XML characters" (substitute-chars-strings - string '((#\& . "&") (#\> . ">") (#\< . "<")))) + string '((#\& . "&") (#\> . ">") (#\< . "<") (#\" . """)))) (defun make-usb8-array (len)