From: Kevin M. Rosenberg Date: Tue, 6 May 2003 08:15:47 +0000 (+0000) Subject: r4844: Auto commit for Debian build X-Git-Tag: v1.96~224 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=13d4172e2d739e47d8488e06c2a050782aab7548 r4844: Auto commit for Debian build --- diff --git a/strings.lisp b/strings.lisp index a9acdc2..2537616 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.21 2003/05/06 01:43:14 kevin Exp $ +;;;; $Id: strings.lisp,v 1.22 2003/05/06 08:15:15 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -242,7 +242,7 @@ list of characters and replacement strings." (do* ((rest-lists lists (cdr rest-lists)) (list (car rest-lists) (car rest-lists)) (last-list (null (cdr rest-lists)) (null (cdr rest-lists)))) - ((null list) strm) + ((null rest-lists) strm) (do* ((lst list (cdr lst)) (elem (car lst) (car lst)) (last-elem (null (cdr lst)) (null (cdr lst))))