From: Chris Hanson Date: Wed, 22 Oct 1997 23:01:16 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: 20090517-FFI~4970 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=179bcd82ebca7776f71b2081ef840f4590bef038;p=mit-scheme.git Fix typo in previous change. --- diff --git a/v7/src/runtime/os2prm.scm b/v7/src/runtime/os2prm.scm index 141a9757f..39744752f 100644 --- a/v7/src/runtime/os2prm.scm +++ b/v7/src/runtime/os2prm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: os2prm.scm,v 1.31 1997/10/22 20:00:47 cph Exp $ +$Id: os2prm.scm,v 1.32 1997/10/22 23:01:16 cph Exp $ Copyright (c) 1994-97 Massachusetts Institute of Technology @@ -443,7 +443,7 @@ MIT in each case. |# (map (lambda (s) (fix:+ (string-length s) 1)) strings))))) (let ((n (string-length (car strings)))) (substring-move-left! (car strings) 0 n result 0) - (string-set! result (fix:+ index n) #\NUL) + (string-set! result n #\NUL) (let loop ((strings (cdr strings)) (index (fix:+ n 1))) (let ((n (string-length (car strings)))) (substring-move-left! (car strings) 0 n result index)