From: Kevin Rosenberg Date: Sun, 21 Oct 2007 20:36:27 +0000 (-0600) Subject: 2007-10-22 Kevin M. Rosenberg X-Git-Tag: v1.6.5^0 X-Git-Url: http://git.kpe.io/?p=lml2.git;a=commitdiff_plain;h=45144345cc90614a3f6922f43f79effaabf8668e 2007-10-22 Kevin M. Rosenberg * Version 1.6.5 * htmlgen.lisp: Remove dependency on simple string, thanks to Anton Vodonosov --- diff --git a/ChangeLog b/ChangeLog index 1c3c493..396b7b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-22 Kevin M. Rosenberg + * Version 1.6.5 + * htmlgen.lisp: Remove dependency on simple string, thanks to Anton Vodonosov + +Versions 1.6.2-1.6.4 not noted + 2006-11-07 Kevin M. Rosenberg * Version 1.6.1 * apache-dir.lisp: Image source link fix -- thanks to Matthew Kennedy diff --git a/debian/changelog b/debian/changelog index 9b5993c..f927805 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml2 (1.6.5-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sun, 21 Oct 2007 14:34:29 -0600 + cl-lml2 (1.6.4-1) unstable; urgency=low * Support modifying encoding for std sites diff --git a/htmlgen.lisp b/htmlgen.lisp index 4fa517e..8e7563c 100644 --- a/htmlgen.lisp +++ b/htmlgen.lisp @@ -360,7 +360,7 @@ (when (< start i) (write-sequence string stream :start start :end i))) - (let* ((ch (schar string i)) + (let* ((ch (char string i)) (cvt (case ch (#\< "<") (#\> ">")