X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=strings.lisp;h=2537616e10107d9f6274843a22199da30a1c0d11;hb=13d4172e2d739e47d8488e06c2a050782aab7548;hp=a9acdc27281ad98ef62d1d963d569f0e55fb20a0;hpb=ca0dcaef675ae959bb83754254fb68cb5f0ec670;p=kmrcl.git 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))))