X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=strings.lisp;h=404f33a6f9bed2e6998f345bee8433ced42a3555;hp=975f1e2dcaad34dd1ff7b98d12ab1975a15cbdd8;hb=7020e8ae7ee885f138741899627f57b6bdcceeae;hpb=a3ddf56dae1326e736facc5d8034b457bbad1200 diff --git a/strings.lisp b/strings.lisp index 975f1e2..404f33a 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.15 2003/04/29 15:25:22 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)