From: Chris Hanson Date: Tue, 20 Dec 2005 15:53:04 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~1152 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=38eade562d181b5a4c8410fb8628e29c01e0ac3d;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/runtime/strnin.scm b/v7/src/runtime/strnin.scm index 8461fea5a..2c424c66b 100644 --- a/v7/src/runtime/strnin.scm +++ b/v7/src/runtime/strnin.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: strnin.scm,v 14.16 2005/12/14 05:44:41 cph Exp $ +$Id: strnin.scm,v 14.17 2005/12/20 15:53:04 cph Exp $ Copyright 1988,1990,1993,1999,2003,2004 Massachusetts Institute of Technology Copyright 2005 Massachusetts Institute of Technology @@ -59,7 +59,7 @@ USA. (fix:min (fix:- end index) (fix:- end* start*)))) (let ((limit (fix:+ index n))) - (substring-move! string index limit string* start) + (substring-move! string index limit string* start*) (set! index limit)) n)))))