From 3e172b14a7f4c73098ab3e1808db2b0bdc0bf986 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 28 Dec 2002 07:59:37 +0000 Subject: [PATCH] r3676: *** empty log message *** --- debian/changelog | 8 +++++++- strings.lisp | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9b6725b..aa1caf1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,12 @@ +cl-kmrcl (1.24-1) unstable; urgency=low + + * strings.lisp: fix typo error + + -- Kevin M. Rosenberg 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 Thu, 26 Dec 2002 04:46:15 -0700 diff --git a/strings.lisp b/strings.lisp index 88ebbdf..231ad69 100644 --- a/strings.lisp +++ b/strings.lisp @@ -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 -- 2.34.1