From 179bcd82ebca7776f71b2081ef840f4590bef038 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 22 Oct 1997 23:01:16 +0000 Subject: [PATCH] Fix typo in previous change. --- v7/src/runtime/os2prm.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.25.1