From f705cce0adbf496bb4dc5f70e4f18846c39d2d7d Mon Sep 17 00:00:00 2001 From: Henrik Wallin <hedda@lysator.liu.se> Date: Tue, 26 Sep 2000 04:49:11 +0200 Subject: [PATCH] Corrected comment in `* string * array Rev: src/operators.c:1.105 --- src/operators.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operators.c b/src/operators.c index c57b649642..3e7f090368 100644 --- a/src/operators.c +++ b/src/operators.c @@ -6,7 +6,7 @@ /**/ #include "global.h" #include <math.h> -RCSID("$Id: operators.c,v 1.104 2000/09/26 02:44:30 hedda Exp $"); +RCSID("$Id: operators.c,v 1.105 2000/09/26 02:49:11 hedda Exp $"); #include "interpret.h" #include "svalue.h" #include "multiset.h" @@ -1703,7 +1703,7 @@ PMOD_EXPORT void o_multiply(void) len=sp[-2].u.string->len << sp[-2].u.string->size_shift; for(e=0;e<((int)sp[-1].u.float_number);e++,pos+=len) MEMCPY(pos,sp[-2].u.string->str,len); - /* copy the last part of the array */ + /* copy the last part of the string */ if (extra) MEMCPY(pos,sp[-2].u.string->str,extra); pop_n_elems(2); -- GitLab