r3676: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 28 Dec 2002 07:59:37 +0000 (07:59 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 28 Dec 2002 07:59:37 +0000 (07:59 +0000)
debian/changelog
strings.lisp

index 9b6725bb24f02c767c076d62ac4dc294c723dcb0..aa1caf1dc0f3c0049919f59b891d225e3f8c6880 100644 (file)
@@ -1,6 +1,12 @@
+cl-kmrcl (1.24-1) unstable; urgency=low
+
+  * strings.lisp: fix typo error
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 28 Dec 2002 00:58:18 -0700
+
 cl-kmrcl (1.23-1) unstable; urgency=low
 
-  * New upstream
+  * New upstream, add string functions
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 26 Dec 2002 04:46:15 -0700
 
index 88ebbdfbabb2fdf4dc692ad60523654de0adece2..231ad6923fc1788d0ccfc5378a03e232a6cdf404 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: strings.lisp,v 1.4 2002/12/26 11:57:07 kevin Exp $
+;;;; $Id: strings.lisp,v 1.5 2002/12/28 07:59:37 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -188,7 +188,7 @@ list of characters and replacement strings."
                (declare (fixnum oldpos))
                (if (char= repl-char (schar string oldpos))
                    (dotimes (repl-pos repl-length)
-                     (declare (fixnumm repl-pos))
+                     (declare (fixnum repl-pos))
                      (setf (schar new-string newpos) (schar repl-str repl-pos))
                      (incf newpos))
                    (progn